You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
598 B
Plaintext
19 lines
598 B
Plaintext
4 months ago
|
//===== rAthena Script =======================================
|
||
|
//= Sample: Class Constants
|
||
|
//===== By: ==================================================
|
||
|
//= rAthena Dev Team
|
||
|
//===== Last Updated: ========================================
|
||
|
//= 20110123
|
||
|
//===== Description: =========================================
|
||
|
//= Outputs the values of class constants.
|
||
|
//============================================================
|
||
|
|
||
|
prontera,155,177,1 script Tell Me 725,{
|
||
|
mes "[Tell Me]";
|
||
|
mes "Class: " + Class;
|
||
|
mes "BaseClass: " + BaseClass;
|
||
|
mes "BaseJob: " + BaseJob;
|
||
|
mes "Upper: " + Upper;
|
||
|
close;
|
||
|
}
|