Quote:
Originally Posted by Depresie
The help you will receive is directly proportional with the information you gave in your post.. 0
|
Here's a code that I use on HL1 on a map. It works only on respawn sadly.
Code:
public player_spawn(id)
{
if(!is_user_alive(id)) return HAM_IGNORED;
strip_user_weapons(id)
give_item(id, "weapon_crowbar")
give_item(id,"item_longjump")
set_user_armor(id, 100)
set_user_godmode(id, 1);
return HAM_IGNORED;
}