diff options
-rw-r--r-- | npc/functions/mobhunter.txt | 4 | ||||
-rw-r--r-- | npc/items/teleporter.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt index a19a595a1..f0fa46834 100644 --- a/npc/functions/mobhunter.txt +++ b/npc/functions/mobhunter.txt @@ -87,8 +87,8 @@ function script GHQ_GetRewardsOnMilestone { // Setup .@old=GHMEMO[getq(General_Hunter)]; .@new=getq2(General_Hunter); - .@blv=atoi(strmobinfo(3, .@monsterId)); - .@bhp=atoi(strmobinfo(4, .@monsterId)); + .@blv=strmobinfo(3, .@monsterId); + .@bhp=strmobinfo(4, .@monsterId); .@xp=0; .@gp=0; .@jp=0; diff --git a/npc/items/teleporter.txt b/npc/items/teleporter.txt index 887121a98..dad9b97a7 100644 --- a/npc/items/teleporter.txt +++ b/npc/items/teleporter.txt @@ -35,7 +35,7 @@ OnUse: // Chances begin at 100%, and lower in 0.01% each second // It will never be below 30%, which happens after 7000 seconds .@adj_breakrate=max(3000, 10000-(gettimetick(2)-TELEPORTER_TIME) ); - debugmes "Adjusted break ratio: %d", .@adj_breakrate; + //debugmes "Adjusted break ratio: %d", .@adj_breakrate; if (rand(0,10000) > .@adj_breakrate) getitem @itemid, 1; else |