10.07.2013, 04:35
Alright, The reason for this is because you have the two commands as the same, it will not open. I also see that you forgot to put "/" on the 'closeddoor'. It should be "/closeddoor" not just "closeddoor" the Separate the CMDS. Use this below.
I hope this helped! Good Luck
pawn Код:
if(strcmp(cmd, "/opensddoor", true) == 0)
{
MoveObject(apsd, 496.0321, 1763.5408, 1179.0130, 3);
return 1;
}
if(strcmp(cmd, "/closeddoor", true) == 0)
{
MoveObject(apsd, 496.0321, 1763.5408, 1181.4729, 3);
return 1;
}
