how can i spawn jetpack
#1

hey guys
i need jetpack spawner only for admins
can u make for me pwn file that i need to put it in filterscript
or pastebin
Reply
#2

pawn Code:
SetPlayerSpecialAction(playerid,2);
That's for setting the player to the Jetpack animation.
Reply
#3

i dont need jetpack animation I need a jetpack spawner using this command /jetpack or somthing like this
and if you can tell me how to put it and where
Reply
#4

pawn Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if(IsPlayerAdmin(playerid))
    {
        if(!strcmp(cmdtext, "/jetpack", true))
        {
             SendClientMessage(playerid, -1, "Spawned a Jetpack!");
             SetPlayerSpecialAction(playerid,2);
             return 1;
        }
    }
    return 0;
}
Try that.
Reply
#5

thanks its working
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)