[HELP]Zombie Dollars

Experienced Elementalist
Joined
Oct 12, 2013
Messages
217
Reaction score
69
Where can i change the amount of $$$ the zombies drop. Currently its random but the amounts are too high. I would like to make it like $10 - 75.

CODEX SRC
 
Where can i change the amount of $$$ the zombies drop. Currently its random but the amounts are too high. I would like to make it like $10 - 75.

CODEX SRC

I did it changing something in the database, just like GigaToni said.
But, I'm using RZ:CE and to change it, go to:

Navicat or other -> WarZ -> dbo > tables -> items_LootData.

In my case, I deleted everything and starting to add 1 by 1, but... to drop money I put:

LootID: 301136
Chance: 80%
ItemID: 0
GDMin: 1000
GDMax: 7000

You should know that,

GDMin: its the minimum value of the money dropped.
GDMax: its the maximum value of the money dropped.
Chance: its the rate
 
Upvote 0
How do I set it to random? Just have this command line in UserRewards.cpp

"SetReward(1, "ZombieKill", 2, 2, 5, 5);"

So just give me 4 XP of each zombie, but how can I change it that I get a random amount of $ which I can edit?
 
Upvote 0
How do I set it to random? Just have this command line in UserRewards.cpp

"SetReward(1, "ZombieKill", 2, 2, 5, 5);"

So just give me 4 XP of each zombie, but how can I change it that I get a random amount of $ which I can edit?
declare this argument u_GetRandom
 
Upvote 0
Back