diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-21 04:44:43 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-21 04:44:43 +0000 |
commit | 5e64e79baaf6de6e7f776898c4987e15f4404054 (patch) | |
tree | bdc391e7ea2b69371b97180ef66af75bd6e252f7 /npc/other/Global_Functions.txt | |
parent | bec4f4660a654ecda5072c6adf4d01756b4a1f37 (diff) | |
download | hercules-5e64e79baaf6de6e7f776898c4987e15f4404054.tar.gz hercules-5e64e79baaf6de6e7f776898c4987e15f4404054.tar.bz2 hercules-5e64e79baaf6de6e7f776898c4987e15f4404054.tar.xz hercules-5e64e79baaf6de6e7f776898c4987e15f4404054.zip |
Rewrote JobChanger..
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6674 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/Global_Functions.txt')
-rw-r--r-- | npc/other/Global_Functions.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt index 66fa2bb7d..9b25cdce5 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -380,6 +380,17 @@ function script getJobName { return "Star Gladiator";
case Job_Soul_Linker:
return "Soul Linker";
+ case Job_Ninja:
+ return "Ninja";
+ case Job_Gunslinger:
+ return "Gunslinger";
+ case Job_Xmas:
+ return "Christmas";
+ case Option_Wedding:
+ if(Sex == 0)
+ return "Bride";
+ else
+ return "Bridegroom";
default:
return "omghaxor";
}
|