diff options
author | Haru <haru@dotalux.com> | 2013-11-09 16:41:40 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-11-09 16:41:40 +0100 |
commit | 857bdc4f98be6cd1e185a24565d6b6b54752b9b4 (patch) | |
tree | 948d7b4ee8c991a128f5db2aa9df5b8ecf5ab37d /npc/guild2/guild_flags.txt | |
parent | 8ed38f98894fb04b4403b44dc0f36281cfd36326 (diff) | |
download | hercules-857bdc4f98be6cd1e185a24565d6b6b54752b9b4.tar.gz hercules-857bdc4f98be6cd1e185a24565d6b6b54752b9b4.tar.bz2 hercules-857bdc4f98be6cd1e185a24565d6b6b54752b9b4.tar.xz hercules-857bdc4f98be6cd1e185a24565d6b6b54752b9b4.zip |
Consolidated commands called in scripts to their lowercase version
- Added a note about variables and command scripts case sensitivity.
Even though the engine still accepts variable, function and command
names in a case insensitive way, it is discouraged to rely on such
behavior. Please update your custom scripts as soon as possible.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/guild2/guild_flags.txt')
-rw-r--r-- | npc/guild2/guild_flags.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/guild2/guild_flags.txt b/npc/guild2/guild_flags.txt index fac506f32..c5bbd1d08 100644 --- a/npc/guild2/guild_flags.txt +++ b/npc/guild2/guild_flags.txt @@ -16,7 +16,7 @@ yuno,109,167,5 script Himinn GUILD_FLAG,{ OnAgitInit2: OnRecvCastlesc01: - FlagEmblem GetCastleData("schg_cas01",1); + flagemblem getcastledata("schg_cas01",1); end; } @@ -25,7 +25,7 @@ yuno,110,171,5 script Andlangr GUILD_FLAG,{ OnAgitInit2: OnRecvCastlesc02: - FlagEmblem GetCastleData("schg_cas02",1); + flagemblem getcastledata("schg_cas02",1); end; } @@ -34,7 +34,7 @@ yuno,111,175,5 script Viblainn GUILD_FLAG,{ OnAgitInit2: OnRecvCastlesc03: - FlagEmblem GetCastleData("schg_cas03",1); + flagemblem getcastledata("schg_cas03",1); end; } @@ -43,7 +43,7 @@ yuno,112,179,5 script Hljod GUILD_FLAG,{ OnAgitInit2: OnRecvCastlesc04: - FlagEmblem GetCastleData("schg_cas04",1); + flagemblem getcastledata("schg_cas04",1); end; } @@ -52,7 +52,7 @@ yuno,114,183,5 script Skidbladnir GUILD_FLAG,{ OnAgitInit2: OnRecvCastlesc05: - FlagEmblem GetCastleData("schg_cas05",1); + flagemblem getcastledata("schg_cas05",1); end; } @@ -62,7 +62,7 @@ rachel,124,120,3 script Mardol GUILD_FLAG,{ OnAgitInit2: OnRecvCastlear01: - FlagEmblem GetCastleData("arug_cas01",1); + flagemblem getcastledata("arug_cas01",1); end; } @@ -71,7 +71,7 @@ rachel,136,120,5 script Cyr GUILD_FLAG,{ OnAgitInit2: OnRecvCastlear02: - FlagEmblem GetCastleData("arug_cas02",1); + flagemblem getcastledata("arug_cas02",1); end; } @@ -80,7 +80,7 @@ rachel,138,126,6 script Horn GUILD_FLAG,{ OnAgitInit2: OnRecvCastlear03: - FlagEmblem GetCastleData("arug_cas03",1); + flagemblem getcastledata("arug_cas03",1); end; } @@ -89,7 +89,7 @@ rachel,135,131,7 script Gefn GUILD_FLAG,{ OnAgitInit2: OnRecvCastlear04: - FlagEmblem GetCastleData("arug_cas04",1); + flagemblem getcastledata("arug_cas04",1); end; } @@ -98,6 +98,6 @@ rachel,124,130,1 script Banadis GUILD_FLAG,{ OnAgitInit2: OnRecvCastlear05: - FlagEmblem GetCastleData("arug_cas05",1); + flagemblem getcastledata("arug_cas05",1); end; } |