* Fixed a few NPCs that were giving curly errors. It seems to be caused by a bug that the NPCs' last line isn't read or something [Codemaster]

git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@712 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
codemaster 2004-12-21 21:52:17 +00:00
parent 4b50038096
commit ed9ff63ee4
9 changed files with 1077 additions and 1071 deletions

View File

@ -1,5 +1,6 @@
Date Added Date Added
12/21 12/21
* Fixed a few NPCs that were giving curly errors. It seems to be caused by a bug that the NPCs' last line isn't read or something [Codemaster]
* Fixed a tiny compile warning in npc.c [Codemaster] * Fixed a tiny compile warning in npc.c [Codemaster]
* Allowed the NPCs without proper curly brackets to still load, but give an error still [Codemaster] * Allowed the NPCs without proper curly brackets to still load, but give an error still [Codemaster]
* Added variable 'current_file' which tells the filename of the script while loading npcs [MC Cameri] * Added variable 'current_file' which tells the filename of the script while loading npcs [MC Cameri]

View File

@ -150,3 +150,8 @@ Progress: 0%
1002,1039,1 // makes a poring a big bapho 1002,1039,1 // makes a poring a big bapho
1002,1039,2 // makes a poring a small bapho 1002,1039,2 // makes a poring a small bapho
effect id or something effect id or something
Problem: The last line of NPC files isn't read, or is mis-handled
Assigned: N/A
Progress: 0%
Note: An example of this would be to make the last line of your NPC you right curly bracket - the } - and then try to run the server with that NPC - the map server will whine about it.

View File

@ -127,4 +127,4 @@ OnTimer11000:
stopnpctimer; stopnpctimer;
disablenpc "Dracula_Event"; disablenpc "Dracula_Event";
Break; Break;
} }

View File

@ -132,4 +132,4 @@ M_DONT_HAVE:
mes "The old cemetery is going out of control soon..."; mes "The old cemetery is going out of control soon...";
mes "Please, in the name of Odin, help Prontera city."; mes "Please, in the name of Odin, help Prontera city.";
close; close;
} }

View File

@ -90,4 +90,4 @@ izlude.gat,134,92,4 duplicate(Twin-Towers) Twin Towers#tt4 812
alberta.gat,25,238,4 duplicate(Twin-Towers) Twin Towers#tt5 812 alberta.gat,25,238,4 duplicate(Twin-Towers) Twin Towers#tt5 812
geffen.gat,120,60,4 duplicate(Twin-Towers) Twin Towers#tt6 812 geffen.gat,120,60,4 duplicate(Twin-Towers) Twin Towers#tt6 812
aldebaran.gat,145,118,4 duplicate(Twin-Towers) Twin Towers#tt7 812 aldebaran.gat,145,118,4 duplicate(Twin-Towers) Twin Towers#tt7 812
comodo.gat,194,158,4 duplicate(Twin-Towers) Twin Towers#tt7 812 comodo.gat,194,158,4 duplicate(Twin-Towers) Twin Towers#tt7 812

View File

@ -269,4 +269,4 @@ LStartMan:
mes "このシャルル=オルレアンを煩わせる"; mes "このシャルル=オルレアンを煩わせる";
mes "なんて。オゥ~、ノンノンノン。"; mes "なんて。オゥ~、ノンノンノン。";
close; close;
} }

View File

@ -261,4 +261,4 @@ cmd_fild08.gat,0,0,0,0 monster Antonio 1247,1,0,0,0
cmd_fild09.gat,0,0,0,0 monster Antonio 1247,1,0,0,0 cmd_fild09.gat,0,0,0,0 monster Antonio 1247,1,0,0,0
gef_dun01.gat,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0 gef_dun01.gat,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0
gefenia02.gat,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0 gefenia02.gat,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0

View File

@ -1855,4 +1855,4 @@ M_Menu:
M_End: M_End:
close; close;
} }

File diff suppressed because it is too large Load Diff