Help Drop Rate Sever 5095

08/18/2024 04:03 memo1bs#1
Can someone help me adjust my drop rate on my server ?

please anyone contact me

I Want to make some changes

if player don`t have Vip drop from monster 1 cps
if player have 1hour Vip drop from monster 5 cps
if player have 30day Vip drop form monster 10 cps

i want monsters to drop items randomly
like
Dragonball
items +2
Stone +2
super items -5
proftokens

can someone help me with this please
10/17/2024 10:40 deathrate#2
each vip type needs to be assigned as a flag property to player then u can chain it together with if and else statements example as

if (killer.Player.Vip30Day)
{
if (Core.Rate(0.005))
{
if (killer.Player.VIP1HOUR)
{
// Increase ConquerPoints by a certain amount, assuming 'ConquerPoints' is a property of 'Player'
killer.Player.ConquerPoints += 10; // Increment ConquerPoints by 10, adjust the amount as needed
killer.SendSysMessage("10 ConquerPoints have been added to your account.", MsgMessage.ChatMode.System);
return;
}
else
{
// For Vip 1 hr vip players or different handling
killer.Player.ConquerPoints += 5; // Increment ConquerPoints by 5, adjust the amount as needed
killer.SendSysMessage("5 ConquerPoints have been added to your account.", MsgMessage.ChatMode.System);
}
return;
}
}
10/17/2024 14:46 wolfcfx880#3
Quote:
Originally Posted by memo1bs View Post
Can someone help me adjust my drop rate on my server ?

please anyone contact me

I Want to make some changes

if player don`t have Vip drop from monster 1 cps
if player have 1hour Vip drop from monster 5 cps
if player have 30day Vip drop form monster 10 cps

i want monsters to drop items randomly
like
Dragonball
items +2
Stone +2
super items -5
proftokens

can someone help me with this please
Let me guess that you are talking about TQ bins server leaked & published sources

There is no one here would pay a second to help u in this matter