I don't know what that mean.....
#1

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.

Reply
#2

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

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

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

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; }
}

Reply
#6

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.
Reply
#7

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

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!
Reply
#9

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...
Reply
#10

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?
Reply


Forum Jump:


Users browsing this thread: