diff options
Diffstat (limited to 'npc/jobs/2-2a/Clown.txt')
-rw-r--r-- | npc/jobs/2-2a/Clown.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/jobs/2-2a/Clown.txt b/npc/jobs/2-2a/Clown.txt index 1d9b200bf..173aedb40 100644 --- a/npc/jobs/2-2a/Clown.txt +++ b/npc/jobs/2-2a/Clown.txt @@ -17,7 +17,7 @@ valkyrie,53,54,3 script Minstrel#Valkyrie 2_M_BARD_ORIENT,{ if (ADVJOB == 0 || Upper != 1) { - set .@karma_d,rand(1,10); + .@karma_d = rand(1,10); if (.@karma_d > 4) { mes "[Minstrel]"; mes "Congratulations."; @@ -58,7 +58,7 @@ valkyrie,53,54,3 script Minstrel#Valkyrie 2_M_BARD_ORIENT,{ close; } jobchange Job_Clown; - set ADVJOB,0; + ADVJOB = 0; mes "[Minstrel]"; mes "Congratulations!"; mes "As a Minstrel, your"; |