29.08.2011, 11:41
Hey guys,
I got a problem with a couple errors, and im not sure how to fix this, since i dont see any problems. I also never had this error, so dont really have a clue what it means.
~Wesley
Edit: The string isnt to short, i just made the size to [512] and still having the same problem!
I got a problem with a couple errors, and im not sure how to fix this, since i dont see any problems. I also never had this error, so dont really have a clue what it means.
pawn Код:
format( string, sizeof string, "Name: %s \
\nIP adress: %d \
\nTotal kills: %i \
\nTotal deaths: %i \
\nTotal K/D ratio: %0.2f \
\nAdmin level: %i (%s) \
\nVip level: %i (%s) \
\nUse your own weapons: %s \
\nHighest killstreak: %i \
\nTotal commands used: %i ", GetName(playerid), \
GetPIP(playerid), \
PlayerInfo[playerid][pKills], \
PlayerInfo[playerid][pDeaths], \
Float:floatdiv( PlayerInfo[playerid][pKills], PlayerInfo[playerid][pDeaths] ), \
PlayerInfo[playerid][pAdmin], \
AdminInfo, \ // 1304
PlayerInfo[playerid][pVip], \ // 1305
VipInfo, \
UseOwnInfo, \
PlayerInfo[playerid][pHighestKS], \
PlayerInfo[playerid][pCMD]); // 1310
Код:
(1304) : error 075: input line too long (after substitutions) (1305) : error 017: undefined symbol "pl" (1310) : warning 217: loose indentation (1310) : error 017: undefined symbol "ayerid" (1310) : error 029: invalid expression, assumed zero (1310) : error 029: invalid expression, assumed zero (1310) : fatal error 107: too many error messages on one line
Edit: The string isnt to short, i just made the size to [512] and still having the same problem!