diff options
author | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-04 18:01:01 +0000 |
---|---|---|
committer | DracoRPG <DracoRPG@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-04 18:01:01 +0000 |
commit | 7bccd07dda59813abd5173237718953943e9803b (patch) | |
tree | 923087695a645bcfa7edd12c7523fb9704aba134 /npc/cities/payon.txt | |
parent | af1ad6e424c5b9c0aefd402e276a9743174028a2 (diff) | |
download | hercules-7bccd07dda59813abd5173237718953943e9803b.tar.gz hercules-7bccd07dda59813abd5173237718953943e9803b.tar.bz2 hercules-7bccd07dda59813abd5173237718953943e9803b.tar.xz hercules-7bccd07dda59813abd5173237718953943e9803b.zip |
* Minor change in payon.txt to prevent crash : rand(0) -> 0
* Removed Berserk's skills requirements
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1403 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/cities/payon.txt')
-rw-r--r-- | npc/cities/payon.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/cities/payon.txt b/npc/cities/payon.txt index 9743df30c..1a465376a 100644 --- a/npc/cities/payon.txt +++ b/npc/cities/payon.txt @@ -951,7 +951,7 @@ payon_in03.gat,117,128,4 script Fortune Teller 704,{ mes "[Lhimetorra]"; mes "Future... the card that sees the future is beginning to speak...... Prepare yourself..."; next; - set @TEMP,rand(0); + set @TEMP,0; mes "[Lhimetorra]"; if(@TEMP == 0) mes "Jack says you may be frustrated in the future."; if(@TEMP == 0) mes "He says to overcome the frustration, it is necessary to think of happy thoughts."; @@ -973,7 +973,7 @@ payon_in03.gat,117,128,4 script Fortune Teller 704,{ mes "form of cards... so listen"; mes "carefully-!"; next; - set @TEMP,rand(0); + set @TEMP,0; mes "[Lhimetorra]"; if(@TEMP == 0) mes "The pirate is warning you of your beauty. Don't show off your beauty too much. Pirates are very jealous of aparence, as well."; next; |