29.08.2013, 22:08
Bom, Meu portão fica Torto ao Logar no Server, Print:
Meu FilterScript do Portão:
Meu FilterScript do Portão:
pawn Код:
// Portão Tutorial ******* - By BUGVIP //
#include <a_samp>
new Portao;
#define Vermelho 0xFF0000AA
#define Amarelo 0xFFFF00AA
public OnFilterScriptInit()
{
Portao = CreateObject(980, 321, -1188.3896484375, 78, 0, 0, 21799621582031);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
//----------------------------
if (strcmp("/abrir", cmdtext, true, 10) == 0)
{
if(!IsPlayerAdmin(playerid))
{
MoveObject(Portao, 330.2998046875, -1180.599609375, 78,5.0);
SendClientMessage(playerid, 0xFFFF00AA, "[CASA]Bem Vindo Ungreli_Silva");
return 1;
}
}
//----------------------------
if (strcmp("/fechar", cmdtext, true, 10) == 0)
{
if(!IsPlayerAdmin(playerid))
{
MoveObject(Portao, 321, -1188.3896484375, 78, 5.0);
SendClientMessage(playerid, 0xFFFF00AA, "[CASA]Bom Jogo Ungreli_Silva/Volte Sempre");
return 1;
}
}
return 0;
}