diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/cities/izlude.txt | 2 | ||||
-rw-r--r-- | npc/quests/skills/knight_skills.txt | 2 | ||||
-rw-r--r-- | npc/warps/fields/veins_fild.txt | 13 |
3 files changed, 7 insertions, 10 deletions
diff --git a/npc/cities/izlude.txt b/npc/cities/izlude.txt index 900f2c3a8..2b81c9591 100644 --- a/npc/cities/izlude.txt +++ b/npc/cities/izlude.txt @@ -450,7 +450,7 @@ izlude,124,178,4 script Soldier 105,{ izlude,56,126,7 script Cebalis::RedCebalis 85,{ mes "[Red]"; - mes "The only slill that's needed for a"; + mes "The only skill that's needed for a"; mes "Swordman is ^FF0000Bash^000000! Bash, Bash and"; mes "ONLY ^FF0000BASH^000000! No need to waste time"; mes "and effort for smaller skills!"; diff --git a/npc/quests/skills/knight_skills.txt b/npc/quests/skills/knight_skills.txt index b7b1bb29c..41feec727 100644 --- a/npc/quests/skills/knight_skills.txt +++ b/npc/quests/skills/knight_skills.txt @@ -262,7 +262,7 @@ prontera,69,351,0 script #Observer 111,{ mes "- enough. -"; close; } - mes "- You can see the Calvary Division -"; + mes "- You can see the Cavalry Division -"; mes "- training very hard. -"; mes "- The loud shoutings are quite annoying, -"; mes "- but they are working hard -"; diff --git a/npc/warps/fields/veins_fild.txt b/npc/warps/fields/veins_fild.txt index b1e3fd196..cd49a48b3 100644 --- a/npc/warps/fields/veins_fild.txt +++ b/npc/warps/fields/veins_fild.txt @@ -39,12 +39,9 @@ ve_fild05,359,192,0 warp veinswarp5019 1,1,ve_fild06,84,179 ve_fild04,115,49,0 warp veinswarp5020 1,1,ve_fild06,84,179 ve_fild06,88,176,0 script veinswarp5021 45,1,1,{ - switch(rand(2)){ - case 1: - warp "ve_fild04",115,52; - break; - default: - warp "ve_fild05",354,192; - break; - } + if (rand(2)) + warp "ve_fild04",115,52; + else + warp "ve_fild05",354,192; + end; } |