Posts: 170
Threads: 39
Joined: May 2011
Reputation:
0
Well So there's No Way To Fix It? I Mean In LVDM You Can Do anything.
Posts: 485
Threads: 9
Joined: May 2011
Reputation:
0
.... /facepalm
You can use #pragma tabsize 0 .. but thats incredibly lazy to use, follow means guide.
Posts: 1,426
Threads: 56
Joined: Dec 2010
Reputation:
0
You are fucking with the tabs. Post the code here so we can fix it, and so you can look to it and see what you are doing wrong
Posts: 3,004
Threads: 12
Joined: May 2011
28.07.2011, 20:55
(
Последний раз редактировалось Kaperstone; 28.07.2011 в 21:45.
)
oh.. lol
loose indentation damage your script so you should try to fix this
idk how to explane so i will just give you an example...
WRONG: (what give you thet warning)
pawn Код:
if (strcmp("/hna", cmdtext, true, 10) == 0)
{
SetPlayerHealth(playerid, 100.0);
SetPlayerArmour(playerid, 100.0);
return 1;
}
GOOD:
pawn Код:
if (strcmp("/hna", cmdtext, true, 10) == 0)
{
SetPlayerHealth(playerid, 100.0);
SetPlayerArmour(playerid, 100.0);
return 1;
}
or put under #include ::
but i suggest you to take the first option
Posts: 3,004
Threads: 12
Joined: May 2011
oh... shit >.<
its a forum bug...
i did it right... the fourm just posted it like thet..
nvm fixed...
EDIT:FIXED