SA-MP Forums Archive
[SOLVED BY DICE] - 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: [SOLVED BY DICE] (/showthread.php?tid=144077)



[SOLVED BY DICE] - IamNotKoolllll - 25.04.2010

C:\Users\Mathew\Desktop\v.pwn(32) : error 075: input line too long (after substitutions)
C:\Users\Mathew\Desktop\v.pwn(33) : error 037: invalid string (possibly non-terminated string)
C:\Users\Mathew\Desktop\v.pwn(33) : error 017: undefined symbol "Andromada"
C:\Users\Mathew\Desktop\v.pwn(33) : error 029: invalid expression, assumed zero
C:\Users\Mathew\Desktop\v.pwn(33) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


5 Errors.

what dose that even mean?


errored line

ShowPlayerDialog(playerid, 0, DIALOG_STYLE_LIST, "What plane do you want?", "Andromada\nAT-400\nBeagle\nCropDuster\nDodo\nHydra\nNevada\nRust ler\nShamal\nSkimmer\nStunt Plane\nCargo Bob\nHunter\nLeviathan\nMaverick\nNews Maverick\nPolice Maverick\nRaindance\nSeasparrow\nSparrow\nBike\nBM X\nMountain Bike\nFaggio\nPizzaboy\nBF-400\nNRG-500\nPCJ-600\nFCR-900\nCop Bike (HPV-1000)\nFreeway\nWayfarer\nSanchez\nQuad\nComet\nFe ltzer\nStallion\nWindsor\nBenson\nBobcat\nBurrito\ nBoxville\nBoxburg\nCement Truck\nDFT-30\nFlatbed\nLinerunner\nMule", "Select", "Cancel");



Re: LOOK - PAWNO ISSUE - LOOK - IamNotKoolllll - 25.04.2010

BUMP


Re: LOOK - PAWNO ISSUE - LOOK - IamNotKoolllll - 25.04.2010

Quote:
Originally Posted by IamNotKoolllll
BUMP
double bump


Re: LOOK - PAWNO ISSUE - LOOK - Rac3r - 25.04.2010

Oi, double posting takes the piss.

You triple posted.

Код:
error 075: input line too long (after substitutions)
A line in your script is too long. Find it shorten it or step down a line.

Код:
new PlayerStoredInt[MAX_PLAYERS];
// change to ....
new pInt[MAX_PLAYERS];
OR

Exmple from Ryders Race Filterscript:
Код:
		case 606: ShowPlayerDialog(playerid, dialogid, DIALOG_STYLE_MSGBOX, CreateCaption("Build New Race (Done)"),
		"\
		You have created your race and it's ready to use now.\n\n\
		>> Press 'Finish' to finish. 'Exit' - Has no effect.", "Finish", "Exit");
	}
See how he's used mutiple lines for it.


Re: LOOK - PAWNO ISSUE - LOOK - IamNotKoolllll - 25.04.2010

Quote:
Originally Posted by Rac3r
Oi, double posting takes the piss.

You triple posted.

Код:
error 075: input line too long (after substitutions)
A line in your script is too long. Find it shorten it or step down a line.

Код:
new PlayerStoredInt[MAX_PLAYERS];
// change to ....
new pInt[MAX_PLAYERS];
OR

Exmple from Ryders Race Filterscript:
Код:
		case 606: ShowPlayerDialog(playerid, dialogid, DIALOG_STYLE_MSGBOX, CreateCaption("Build New Race (Done)"),
		"\
		You have created your race and it's ready to use now.\n\n\
		>> Press 'Finish' to finish. 'Exit' - Has no effect.", "Finish", "Exit");
	}
See how he's used mutiple lines for it.
pint i didnt use that


Re: LOOK - PAWNO ISSUE - LOOK - IamNotKoolllll - 25.04.2010

again double post
C:\Users\Mathew\Desktop\v.pwn(33) : error 037: invalid string (possibly non-terminated string)
C:\Users\Mathew\Desktop\v.pwn(33) : error 017: undefined symbol "Andromada"
C:\Users\Mathew\Desktop\v.pwn(33) : error 029: invalid expression, assumed zero
C:\Users\Mathew\Desktop\v.pwn(33) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


4 Errors.

can u show me the code modified as what you posted made apsolutly no sense


Re: LOOK - PAWNO ISSUE - LOOK - Correlli - 25.04.2010

http://forum.sa-mp.com/index.php?topic=67900.0


Re: LOOK - PAWNO ISSUE - LOOK - IamNotKoolllll - 25.04.2010

Quote:
Originally Posted by Don Correlli
sorry but will u help


Re: LOOK - PAWNO ISSUE - LOOK - dice7 - 25.04.2010

pawn Код:
ShowPlayerDialog(playerid, 0, DIALOG_STYLE_LIST,
    "What plane do you want?",
    "Andromada\nAT-400\nBeagle\nCropDuster\nDodo\nHydra\nNevada\nRustler\nShamal\nSkimmer\nStunt \
    Plane\nCargo Bob\nHunter\nLeviathan\nMaverick\nNews Maverick\nPolice \
    Maverick\nRaindance\nSeasparrow\nSparrow\nBike\nBMX\nMountain Bike\nFaggio\nPizzaboy\n \
    BF-400\nNRG-500\nPCJ-600\nFCR-900\nCop Bike (HPV-1000)\nFreeway\nWayfarer\nSanchez\nQuad\nComet\n \
    Feltzer\nStallion\nWindsor\nBenson\nBobcat\nBurrito\nBoxville\nBoxburg\nCement Truck\nDFT-30\nFlatbed\nLinerunner\nMule"
, "Select", "Cancel");



Re: LOOK - PAWNO ISSUE - LOOK - IamNotKoolllll - 25.04.2010

Quote:
Originally Posted by dice7
pawn Код:
ShowPlayerDialog(playerid, 0, DIALOG_STYLE_LIST,
    "What plane do you want?",
    "Andromada\nAT-400\nBeagle\nCropDuster\nDodo\nHydra\nNevada\nRustler\nShamal\nSkimmer\nStunt \
    Plane\nCargo Bob\nHunter\nLeviathan\nMaverick\nNews Maverick\nPolice \
    Maverick\nRaindance\nSeasparrow\nSparrow\nBike\nBMX\nMountain Bike\nFaggio\nPizzaboy\n \
    BF-400\nNRG-500\nPCJ-600\nFCR-900\nCop Bike (HPV-1000)\nFreeway\nWayfarer\nSanchez\nQuad\nComet\n \
    Feltzer\nStallion\nWindsor\nBenson\nBobcat\nBurrito\nBoxville\nBoxburg\nCement Truck\nDFT-30\nFlatbed\nLinerunner\nMule"
, "Select", "Cancel");
ty