16.10.2009, 02:57
I have this code, i'm trying to make it that i have to be level 1 admin to to use /bush i think it's something wrong with my brackets help, when ever i compile it i get over 26 errors.
here is the pAdmin code
here is the pAdmin code
Код:
if(pAdmin[playerid] >= 1)
{
Код:
//--------------------[bush]-----------------------------
if ( !strcmp( "/bush", cmdtext, true ) )
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
if ( BushEnabled[playerid] )
{
DestroyObject( BushObject[playerid] );
SendClientMessage(playerid, 0xDEEE20FF, "The Bush is Disabled.");
BushEnabled[playerid] = false;
return 1;
}
if(pAdmin[playerid] >= 1)
{
BushObject [playerid] = CreateObject( 800, 0, 0, 0, 0, 0, 0 );
BushEnabled[playerid] = true;
SendClientMessage(playerid, 0xDEEE20FF, "The Bush is Enabled.");
AttachObjectToPlayer( BushObject[playerid], playerid, 0, 0, 0, 0, 0, 0 );
return 1;
}


