can someone help me how to code freeze at the end off the round, i alrdy have dropguns at the end of the round, but i want to, so they freeze to for like 1 sec
can someone help me with this Thank alrdy! xx
PHP Code:
#include <amxmodx>
#include <fun>
public plugin_init()
{
register_plugin("Drop weapons", "1.0", "FA");
register_logevent("round_end", 2, "1=Round_End");
}
public round_end()
{
new players[32],inum;
get_players(players,inum)
for(new id; id<inum;id++) {
if( is_user_alive(id) )
{
strip_user_weapons(id);
give_item(id, "weapon_knife");
}
}
}