Can you tell me what is the include and declarations of this code
#1

if(strcmp(cmdtext, "/briefcase", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pBCase] == 1)
{
if(BCase[playerid] == 0)
{
SetPlayerHoldingObject(playerid, 1210, 6,0.3,0.1,0,0,-90,0); // BriefCase
SendClientMessage(playerid, COLOR_WHITE, " You have pulled out your briefcase. ");
BCase[playerid] = 1;
return 1;
}
else if(BCase[playerid] == 1)
{
StopPlayerHoldingObject(playerid);
SendClientMessage(playerid, COLOR_WHITE, " You have put away your briefcase. ");
BCase[playerid] = 0;
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD2, " You don't own a briefcase !");
return 1;
}
return 1;
}
return 1;
}
Reply


Messages In This Thread
Can you tell me what is the include and declarations of this code - by Hazi38 - 22.08.2015, 11:20
Re: Can you tell me what is the include and declarations of this code - by Mariciuc223 - 22.08.2015, 11:45
Re: Can you tell me what is the include and declarations of this code - by Hazi38 - 22.08.2015, 14:06
Re: Can you tell me what is the include and declarations of this code - by Logofero - 22.08.2015, 16:08

Forum Jump:


Users browsing this thread: 2 Guest(s)