View Single Post
zXCaptainXz
Member
Join Date: May 2017
Old 03-10-2022 , 12:49   Re: save extra items weapon in next round
Reply With Quote #2

If you change false to true, then everyone will have the M4, instead you should just remove the whole "false" line. Try this please:

Code:
public zp_user_humanized_post(id)
{
g_iDmg[id] = 0
}

public event_round_start()
{
for (new i = 1; i <= g_iMaxPlayers; i++)
{
g_bIsFrozen[i]= false
g_iDmg[i] = 0

if(is_user_alive(i))
{
Remove_Rendering(i)
}
}
}

Last edited by zXCaptainXz; 03-10-2022 at 17:42. Reason: Fixed
zXCaptainXz is offline