diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-17 16:19:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-17 16:19:45 -0300 |
commit | af7cab90349e163187c2234b8a7eca88ee485ad6 (patch) | |
tree | 3d56ce127c20fb6339515ee9f94d0835ad79a27f | |
parent | 008429a57523b08d49dcd1d654f08725375aeea3 (diff) | |
download | serverdata-af7cab90349e163187c2234b8a7eca88ee485ad6.tar.gz serverdata-af7cab90349e163187c2234b8a7eca88ee485ad6.tar.bz2 serverdata-af7cab90349e163187c2234b8a7eca88ee485ad6.tar.xz serverdata-af7cab90349e163187c2234b8a7eca88ee485ad6.zip |
Maxime should use rand2() instead of rand()
-rw-r--r-- | npc/003-0-1/maxime.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/003-0-1/maxime.txt b/npc/003-0-1/maxime.txt index 5ca4d7efc..d8e918b1d 100644 --- a/npc/003-0-1/maxime.txt +++ b/npc/003-0-1/maxime.txt @@ -47,13 +47,13 @@ delitem ScorpionStinger, 3; delitem CactusDrink, 2; delitem RoastedMaggot, 1; - getitem TonoriDelight, rand(5,9); + getitem TonoriDelight, rand2(5,9); if (season() == SUMMER) { - getitem TonoriDelight, rand(1,3); + getitem TonoriDelight, rand2(1,3); mesc l("During summer, more Tonori Delight can be produced."); } Zeny=Zeny-120; - getexp rand(30, 60), 0; + getexp rand2(30, 60), 0; mesn; mesq l("Here you go, fresh from the oven!"); |