Hey, I have problem with surf vip plugin. Players dont receive a jetpack and parachute.
Code:
public give_stuff(id)
{
if(!is_user_connected(id))
return;
set_user_health(id, 150);
set_user_armor(id, 100);
give_item(id, "item_kevlar");
give_item(id, "item_assaultsuit");
give_item(id, "surfjetpack");
give_item(id, "Parachute");
give_item(id, "hegranade");
client_print(id, print_chat, "[VIP] Tu esi VIP ir gavai: 150HP, 100AP.")
}
All another items is ok. But parachute and jetpack doesnt work. Whats wrong??
I'm using
https://forums.alliedmods.net/showthread.php?t=44484 jetpack
and
http://forums.alliedmods.net/showthread.php?t=49694 parachute.
Please help me !