25.03.2011, 02:19
hi,
i have tryed and followed loads of helps of how to make a auto gate but they just dont work
iv got the hole gate set to work but not the auto help?
i have tryed and followed loads of helps of how to make a auto gate but they just dont work
iv got the hole gate set to work but not the auto help?
pawn Код:
#include <a_samp>
#include <streamer>
#define COLOR_BLUE1 0x0077dbff
#define COLOR_GREY 0xAFAFAFAA
#define FILTERSCRIPT
new Tollgate1;
forward GateClose();
public OnFilterScriptInit( )
{
Tollgate1 = CreateObject(976, 2216.3156738281, -1142.8746337891, 24.80749130249, 0.0000, 0.0000, 342.13500976563);
print( "\n[FS] *************************" );
print( "[FS] * Tom1412 Toll system *" );
print( "[FS] * Loaded ... *" );
print( "[FS] *************************\n" );
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/openhgate", true)==0)
{
GivePlayerMoney(playerid,-5);
MoveObject(Tollgate1,2225.5759277344, -1146.0582275391, 24.80749130249, 6.5);
SetTimer("GateClose", 2000, 0);
SendClientMessage(playerid, COLOR_BLUE1,"$5 payed \n have a nice day.");
return 1;
}
return 0;
}
public GateClose()
{
MoveObject (Tollgate1,2216.3156738281, -1142.8746337891, 24.80749130249, 3.5);
return 1;
}