03.10.2010, 09:35
Код:
C:\Documents and Settings\Trooja\Desktop\ser 0.3\gamemodes\larp.pwn(57350 -- 57376) : error 075: input line too long (after substitutions) C:\Documents and Settings\Trooja\Desktop\ser 0.3\gamemodes\larp.pwn(57377) : warning 217: loose indentation C:\Documents and Settings\Trooja\Desktop\ser 0.3\gamemodes\larp.pwn(57377) : warning 215: expression has no effect C:\Documents and Settings\Trooja\Desktop\ser 0.3\gamemodes\larp.pwn(57377) : error 001: expected token: ";", but found "\" C:\Documents and Settings\Trooja\Desktop\ser 0.3\gamemodes\larp.pwn(57377) : error 029: invalid expression, assumed zero C:\Documents and Settings\Trooja\Desktop\ser 0.3\gamemodes\larp.pwn(57377) : error 017: undefined symbol "tArmy" C:\Documents and Settings\Trooja\Desktop\ser 0.3\gamemodes\larp.pwn(57377) : fatal error 107: too many error messages on one line
pawn Код:
else if(PlayerInfo[playerid][pGPS] == 1)
{
ShowPlayerDialog(playerid, 1241, DIALOG_STYLE_LIST,
"G.P.S Positions",
"1\tArmy HQ \
\n2\tLicenses Center \
\n3\tOff Road Dealership \
\n4\tCar Graveyard \
\n5\tCoutz And Shoutz \
\n6\tABC Studio \
\n7\tFBI HQ \
\n8\tAmmunation \
\n9\tHosptial \
\n10\tGROTTI \
\n11\tRPL \
\n12\tLSFD \
\n13\tLowriderz Dealership \
\n14\tCity Hall \
\n15\tLSPD \
\n16\tTaxi Co. HQ \
\n17\tArms Dealer Job \
\n18\tBoats Dealership \
\n19\tTrucks Dealership \
\n20\tSF Docks \
\n21\tLVAP Deliver \
\n22\tMaterials Bank \
\n23\tDrug Dealer Job \
\n24\tDrugs Bank \
\n25\tDrugs Bank 2 \
\n26\tDrugs Farmer \
\n27\tMaterials Smuggler Job \
\n28\tMaterials Factory",
"Track", "Off");
SendClientMessage(playerid, COLOR_GREY,"* You have a GPS Addon, displaying illegal jobs positions and others with the GPS Addon.");
SendClientMessage(playerid, COLOR_GREY,"* To turn the GPS Off, type /gps again and select off or type /gpsfind 0 0 0");
}
pawn Код:
else if(PlayerInfo[playerid][pGPS] == 1)
{
new superstring[491];
new list[] = "1\tArmy HQ\n2\tLicenses Center\n3\tOff Road Dealership\n4\tCar Graveyard\n5\tCoutz And Shoutz\n6\tABC Studio\n7\tFBI HQ\n8\tAmmunation\n9\tHosptial\n10\tGROTTI\n11\tRPL\n12\tLSFD\n13\tLowriderz Dealership\n14\tCity Hall\n15\tLSPD\n16\tTaxi Co. HQ";
new list2[] = "\n17\tArms Dealer Job\n18\tBoats Dealership\n19\tTrucks Dealership\n20\tSF Docks\n21\tLVAP Deliver\n22\tMaterials Bank\n23\tDrug Dealer Job\n24\tDrugs Bank\n25\tDrugs Bank 2\n26\t Drugs Farmer\n27\t Materials Smuggler Job\n28\tMaterials Factory";
format(superstring,sizeof(superstring),"%s%s",list,list2);
ShowPlayerDialog(playerid, 1241,DIALOG_STYLE_LIST,"G.P.S Positions",list,"Track","Off");
SendClientMessage(playerid, COLOR_GREY,"* You have a GPS Addon, displaying illegal jobs positions and others with the GPS Addon.");
SendClientMessage(playerid, COLOR_GREY,"* To turn the GPS Off, type /gps again and select off or type /gpsfind 0 0 0");
}