
* 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
32 lines
884 B
Plaintext
32 lines
884 B
Plaintext
//===== rAthena Script =======================================
|
|
//= Sample: Mapflag Test
|
|
//===== By: ==================================================
|
|
//= Jbain
|
|
//===== Current Version: =====================================
|
|
//= 20121003
|
|
//===== Description: =========================================
|
|
//= Demonstrates mapflag commands.
|
|
//============================================================
|
|
|
|
prontera,165,145,0 script EXPflagtest 123,{
|
|
mes "[EXPflagtest]";
|
|
mes "Set up the map rates:";
|
|
switch(select("Job EXP:Base EXP:PVP on:Reset all flags")) {
|
|
case 1:
|
|
input .@rate;
|
|
setmapflag "prontera",MF_JEXP,.@rate;
|
|
close;
|
|
case 2:
|
|
input .@rate;
|
|
setmapflag "prontera",MF_BEXP,.@rate;
|
|
close;
|
|
case 3:
|
|
setmapflag "prontera",MF_PVP;
|
|
close;
|
|
case 4:
|
|
removemapflag "prontera",MF_BEXP;
|
|
removemapflag "prontera",MF_JEXP;
|
|
removemapflag "prontera",MF_PVP;
|
|
close;
|
|
}
|
|
} |