diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-05-15 00:10:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-05-15 00:10:55 -0300 |
commit | 10795dabcfce775a7835f668bd7ce7e799cf8ba8 (patch) | |
tree | 8f342e167a4be91dca64136299e7fccff12cb500 | |
parent | 2d2e87a7ae95c9785cf7c214aaf61982869a2764 (diff) | |
download | serverdata-10795dabcfce775a7835f668bd7ce7e799cf8ba8.tar.gz serverdata-10795dabcfce775a7835f668bd7ce7e799cf8ba8.tar.bz2 serverdata-10795dabcfce775a7835f668bd7ce7e799cf8ba8.tar.xz serverdata-10795dabcfce775a7835f668bd7ce7e799cf8ba8.zip |
Fix the issue in the Cheat NPC which prevented him from selling RP or MobPoints.
-rw-r--r-- | npc/029-0/event.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/029-0/event.txt b/npc/029-0/event.txt index 24c083f76..663aa64c2 100644 --- a/npc/029-0/event.txt +++ b/npc/029-0/event.txt @@ -171,9 +171,9 @@ OnClock2001: if ($EVENT$ != "Steam") end; OnClock2201: - .mobp=rand2(1000, 2500); + .mobp+=rand2(1000, 2500); .mobg=.mobp*rand2(100, 150)/10; - .robp=rand2(900, 1200); + .robp+=rand2(900, 1200); .robg=.robp*rand2(40, 60);//rand2(80, 110); .@steam = $FIRESOFSTEAM; |