diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-11 17:20:20 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-11 17:20:20 +0000 |
commit | 8e044bc3fc16f49cc32db90b3153d3bc21f9ee77 (patch) | |
tree | d27b7a47cf953d21032dc3c20805eacb982d89bb /npc | |
parent | 4fc4f271eb042514ea22dd84b993b3bf288526a9 (diff) | |
download | hercules-8e044bc3fc16f49cc32db90b3153d3bc21f9ee77.tar.gz hercules-8e044bc3fc16f49cc32db90b3153d3bc21f9ee77.tar.bz2 hercules-8e044bc3fc16f49cc32db90b3153d3bc21f9ee77.tar.xz hercules-8e044bc3fc16f49cc32db90b3153d3bc21f9ee77.zip |
- Updated the effect list a bit
- Fixed some npc typos
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10531 54d463be-8e91-2dee-dedb-b68131a5f0ec
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; } |