AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   surf vip plugin (https://forums.alliedmods.net/showthread.php?t=139860)

tovi 10-06-2010 04:35

surf vip plugin
 
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 !

shuttle_wave 10-06-2010 05:35

Re: surf vip plugin
 
PHP Code:

give_item(id"surfjetpack");
give_item(id"Parachute"); 

those dont exsist in the items.

tovi 10-06-2010 14:02

Re: surf vip plugin
 
So what i have to put there? :)


All times are GMT -4. The time now is 10:21.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.