SA-MP Forums Archive
I don't know what that mean..... - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: I don't know what that mean..... (/showthread.php?tid=186562)



I don't know what that mean..... - edgarsb13 - 29.10.2010

I just pressed Compile/run button for fun and it showed me somthing like this!!!!?? What do this mean

Quote:

C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(2622) : warning 235: public function lacks forward declaration (symbol "IsASasCar")
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(9115) : warning 213: tag mismatch
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(12067) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(1206 : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13303) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13305) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13311) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13314) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13320) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13322) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(1332 : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13330) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13336) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(1333 : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13374) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13376) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13412) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13414) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(25653) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(32444) : warning 202: number of arguments does not match definition
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(32444) : warning 202: number of arguments does not match definition
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(34312) : error 030: compound statement not closed at the end of file (started at line 34303)
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.




Re: I don't know what that mean..... - Backwardsman97 - 29.10.2010

It means you have a lot of loose indentation and it looks like you forgot a "}" somewhere.


Re: I don't know what that mean..... - edgarsb13 - 29.10.2010

Oh,and you know when i try to change something like family names they don't change after I save?


Re: I don't know what that mean..... - Backwardsman97 - 29.10.2010

You should post some code of what troubles you so we can see exactly what you're talking about.


Re: I don't know what that mean..... - edgarsb13 - 29.10.2010

So i tried to change family skins,i added skin ID's saved but in game skin ID's was same old!!!!

Quote:

case 8: //Fam8
{
if(SelectCharPlace[playerid] == 1) { SetPlayerSkin(playerid, 112); SelectCharPlace[playerid] = 2; ChosenSkin[playerid] = 23; }
else if(SelectCharPlace[playerid] == 2) { SetPlayerSkin(playerid, 147); SelectCharPlace[playerid] = 3; ChosenSkin[playerid] = 60; }
else if(SelectCharPlace[playerid] == 3) { SetPlayerSkin(playerid, 19); SelectCharPlace[playerid] = 4; ChosenSkin[playerid] = 19; }
else if(SelectCharPlace[playerid] == 4) { SetPlayerSkin(playerid, 290); SelectCharPlace[playerid] = 5; ChosenSkin[playerid] = 211; }
else if(SelectCharPlace[playerid] == 5) { SetPlayerSkin(playerid, 12); SelectCharPlace[playerid] = 6; ChosenSkin[playerid] = 7; }
else if(SelectCharPlace[playerid] == 6) { SetPlayerSkin(playerid, 20); SelectCharPlace[playerid] = 1; ChosenSkin[playerid] = 170; }
}




Re: I don't know what that mean..... - Scenario - 29.10.2010

Quote:
Originally Posted by edgarsb13
Посмотреть сообщение
So i tried to change family skins,i added skin ID's saved but in game skin ID's was same old!!!!
You may have saved the script, but you didn't compile it. You need to press F5 (or F6) to compile your script, which will overwrite the '.amx' file you already have. If you don't know, the server will also need to be restarted.


Re: I don't know what that mean..... - TouR - 29.10.2010

First of all add #pragma tabsize 0 at the top of your script


Re: I don't know what that mean..... - Scenario - 29.10.2010

Quote:
Originally Posted by tour15
Посмотреть сообщение
First of all add #pragma tabsize 0 at the top of your script
No, don't do that! It just shows how careless you are... Simply learn to indent, it isn't that hard!


Re: I don't know what that mean..... - TouR - 29.10.2010

Quote:
Originally Posted by RealCop228
Посмотреть сообщение
No, don't do that! It just shows how careless you are... Simply learn to indent, it isn't that hard!
I said this cause i see some much indent errors...


Re: I don't know what that mean..... - edgarsb13 - 30.10.2010

Quote:
Originally Posted by RealCop228
Посмотреть сообщение
You may have saved the script, but you didn't compile it. You need to press F5 (or F6) to compile your script, which will overwrite the '.amx' file you already have. If you don't know, the server will also need to be restarted.
But I do all what you said! Then I pressed F6 but it showed me this


C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(2622) : warning 235: public function lacks forward declaration (symbol "IsASasCar")
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(9115) : warning 213: tag mismatch
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(12067) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(1206 : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13303) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13305) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13311) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13314) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13320) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13322) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(1332 : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13330) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13336) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(1333 : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13374) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13376) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13412) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(13414) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(25653) : warning 217: loose indentation
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(32444) : warning 202: number of arguments does not match definition
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(32444) : warning 202: number of arguments does not match definition
C:\Users\Blablla\Desktop\HIGHLINE\gamemodes\HC-RP.pwn(34312) : error 030: compound statement not closed at the end of file (started at line 34303)
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.

Then I saved,restarted server,when i went in server nothing changed! Why?