17.03.2012, 05:06
pawn Код:
if(strcmp(cmd, "/opengate", true) == 0)
{
MoveObject(Gate, 1590, -1638, 8.8999996185303, 1);
// That will move our gate at relatively low speed: 3
return 1;
}
if(strcmp(cmd, "/closegate", true) == 0)
{
MoveObject(Gate, 1590, -1638, 15.199999809265, 1);
// That will move our gate at relatively low speed: 3
return 1;
}