15.08.2013, 23:30
Mude isso:
Para isso:
E isso:
Para isso:
Quanto aos objetos nгo aparecerem, use o plugin + include STREAMER, e troque de CreateObject para CreateDynamicObject
pawn Код:
if(PlayerInfo[playerid][pJailed] != 0)
{
SendClientMessage(playerid,COLOR_YELLOW," Vocк nгo pode plantar barracas na cadeia!");
return 1;
}
if(PlayerPaintballing[playerid] != 0)
{
SendClientMessage(playerid,COLOR_YELLOW," Vocк nгo pode por barracas no evento!");
return 1;
}
pawn Код:
if(PlayerInfo[playerid][pJailed] != 0)
{
SendClientMessage(playerid,COLOR_YELLOW," Vocк nгo pode plantar barracas na cadeia!");
return 0;
}
if(PlayerPaintballing[playerid] != 0)
{
SendClientMessage(playerid,COLOR_YELLOW," Vocк nгo pode por barracas no evento!");
return 0;
}
pawn Код:
if (PlayerInfo[playerid][pEmprego] != 10)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo й um Mendigo !");
return 1;
}
if (PlayerInfo[playerid][pBarraca] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo criou nenhuma barraca!");
return 1;
}
Para isso:
pawn Код:
if (PlayerInfo[playerid][pEmprego] != 10)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo й um Mendigo !");
return 0;
}
if (PlayerInfo[playerid][pBarraca] == 0)
{
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo criou nenhuma barraca!");
return 0;
}