07.09.2014, 09:48
I've tried any way that i'm possible to know but still get this error , can anyone help me ?
The Error script using ZCMD:
Код:
D:\SAMP Server\filterscripts\testingFS.pwn(47) : warning 217: loose indentation D:\SAMP Server\filterscripts\testingFS.pwn(51) : warning 217: loose indentation D:\SAMP Server\filterscripts\testingFS.pwn(55) : warning 217: loose indentation Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 3 Warnings.
pawn Код:
CMD:cableon(playerid,params[])
{
new Float:x1, Float:y2, Float:z3;
GetObjectPos(cabin_01, x1, y2, z3);
if ((x1 == 827.7750 && y2 == -2063.8896) && z3 == 20.6669)
{
MoveObject(cabin_01, 829.9734, -2332.8184, 19.2912, 5.11, 0.0, 0.0, 270.0);
}
else if ((x1 == 829.9734 && y2 == -2332.8184) && z3 == 19.2912)
{
MoveObject(cabin_01, 827.7750, -2063.88964, 20.6669, 5.11, 0.0, 0.0, 90.0);
}
return 1;
}