Command error and warning [REP+]
#4

Quote:
Originally Posted by LMaxCo
Посмотреть сообщение
here you go
Код:
CMD:jetpack( playerid, params[ ] )
{
    VipCheck( playerid, 3 );
	SetPlayerSpecialAction( playerid, 2 );
    return ( 1 );
}
try,
Код:
CMD:jetpack(playerid, params[])
{
    if(PlayerInfo[playerid][pAdmin] >= 3 && PlayerInfo[playerid][pAdmin] < 4) {
        JetPack[playerid] = 1;
        SetPlayerSpecialAction(playerid, SPECIAL_ACTION_USEJETPACK);
        return 1;
    }
and, at start of your script
Код:
new JetPack[MAX_PLAYERS];
and compile it and see if it works! make modifications as your like i have given cmd jetpack for admins you can use CheckVIP or what ever you'r using! your this Jetpack cmd is the problem only so try this one which i have given you and then try!

EDIT: have you made a variable at top of your script ?
Код:
new FPS[MAX_PLAYERS];
rep+ if worked!
Reply


Messages In This Thread
Command error and warning [REP+] - by LMaxCo - 30.05.2015, 08:06
Re: Command error and warning [REP+] - by GTLS - 30.05.2015, 08:08
Re: Command error and warning [REP+] - by LMaxCo - 30.05.2015, 08:15
Re: Command error and warning [REP+] - by GTLS - 30.05.2015, 08:24
Re: Command error and warning [REP+] - by LMaxCo - 30.05.2015, 08:35
Re: Command error and warning [REP+] - by GTLS - 30.05.2015, 08:48

Forum Jump:


Users browsing this thread: 1 Guest(s)