I need help to make my gate moving...
#4

Try this.
pawn Код:
#include <a_samp>

new vgate;

public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Blank Filterscript by your name here");
print("--------------------------------------\n");
vgate = CreateObject(19458, 2433.04, -2064.56, -15.71, 0.00, 0.00, 90.00);//closed
return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext,"/ovgate", true) == 0)
{
MoveObject(vgate, 2430.00, -2064.50, -15.71, -1000, -1000, -1000);
return 1;
}
if(strcmp(cmdtext,"/cvgate", true) == 0)
{
MoveObject(vgate, 2433.04, -2064.56, -15.71, -1000, -1000, -1000);
return 1;
}
return 0;
}
Reply


Messages In This Thread
I need help to make my gate moving and have the same password - by Yur - 26.12.2012, 10:02
Re: I need help to make my gate moving... - by Unirom Shaw - 26.12.2012, 10:07
Re: I need help to make my gate moving... - by Konstantinos - 26.12.2012, 10:11
Re: I need help to make my gate moving... - by DaRk_RaiN - 26.12.2012, 10:15
Re: I need help to make my gate moving... - by Yur - 26.12.2012, 10:48
Re: I need help to make my gate moving... - by DaRk_RaiN - 26.12.2012, 10:55
Re: I need help to make my gate moving... - by Blaeks - 26.12.2012, 10:59
Re: I need help to make my gate moving... - by Yur - 26.12.2012, 12:16

Forum Jump:


Users browsing this thread: 1 Guest(s)