Posts: 27
Threads: 2
Joined: Mar 2010
Reputation:
0
Hey guys i want to make moving gate is there any good tutorial pls ?
Posts: 27
Threads: 2
Joined: Mar 2010
Reputation:
0
if(strcmp(cmdtext, "/opengate", true) == 0)
{
new string[50];
new movetime = MoveObject(gate, 1255.13, -767.58, 92.73, 2.00);
format(string, sizeof(string), "Object will finish moving in %d milliseconds", movetime);
SendClientMessage(playerid, 0xFF000000, string);
return 1;
}
i try this but i type /opengate and gates standing and nothing!
Posts: 1,535
Threads: 90
Joined: Feb 2010
Reputation:
0
if(strcmp(cmdtext, "/opengate", true) == 0)
{
new string[50];
MoveObject(gate, 1255.13, -767.58, 92.73, 2.00);
format(string, sizeof(string), "Object will finish moving in 2 seconds");
SendClientMessage(playerid, 0xFF000000, string);
return 1;
}
Posts: 27
Threads: 2
Joined: Mar 2010
Reputation:
0
[AC]Eth Thank you but how can i return back to his start position ?