diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/cities/payon.txt | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index b276dcdaa..24dd6ffac 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -34,6 +34,8 @@ Date Added ====== 04/04 + * Changed "set @TEMP,rand(0);" to set "@TEMP,0;" in the Payon Fortune Teller script [DracoRPG] + We'll have to get all the fortunes, but they are more than 200... * Finished Payon's Gemstone Exchanger, thanks to Dino9021 [DracoRPG] * Added Deviling in the "Poring Island" map pay_fild04, 2 hours respawn [Lupus] 04/03 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; |