
* Deleted doc\sample\PCLoginEvent.txt, which contained outdated information. * Follow-up r16812, fixed file encoding. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16813 54d463be-8e91-2dee-dedb-b68131a5f0ec
18 lines
597 B
Plaintext
18 lines
597 B
Plaintext
//===== rAthena Script =======================================
|
|
//= Sample: Class Constants
|
|
//===== By: ==================================================
|
|
//= rAthena Dev Team
|
|
//===== Current Version: =====================================
|
|
//= 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;
|
|
} |