Please Help Me!!
#1

fixed
Reply
#2

1. Your Streamer fails. It's for 0.3b, and you have 0.3c, download newer streamer.
2. Your code indentation is messed up:
pawn Код:
// Good indentation
CMD:abcd( playerid, params[ ] )
{
    SendClientMessage( playerid, 0xAAAAAA, "Abcd" );
    SendClientMessage( playerid, 0xAAAAAA, "Blah" );
    return 1;
}
pawn Код:
// Bad indentation
CMD:abcd( playerid, params[ ] )
{
  SendClientMessage( playerid, 0xAAAAAA, "Abcd" );
        SendClientMessage( playerid, 0xAAAAAA, "Blah" );
return 1;
}
Meaning your code isn't sorted well, use "TAB" key to indent it.

You can also put
pawn Код:
#pragma tabsize 0
on top of your script, to ignore the "Loose Indentation" warnings, and just don't show them, but I recommend to just fix the indentation.
Reply
#3

k thx!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)