HELPPP!! -
Gold_Master - 13.01.2013
n(1393) : error 004: function "FixHour" is not implemented
(1546) : error 004: function "PlayerToPoint" is not implemented
(1720) : error 029: invalid expression, assumed zero
(1720) : error 004: function "DollahScoreUpdate" is not implemented
(1730) : warning 217: loose indentation
(1730) : error 079: inconsistent return types (array & non-array)
(1732) : warning 225: unreachable code
(1732) : warning 217: loose indentation
(1732) : error 029: invalid expression, assumed zero
(1732) : error 004: function "Encrypt" is not implemented
(1734) : error 017: undefined symbol "string"
(1736) : error 017: undefined symbol "string"
(1736) : warning 215: expression has no effect
(1736) : error 001: expected token: ";", but found "]"
(1736) : error 029: invalid expression, assumed zero
(1736) : fatal error 107: too many error messages on one line
WTF Whats The Problem

?
Re: HELPPP!! -
zJordioz - 13.01.2013
Show us the code
Re: HELPPP!! -
Gold_Master - 13.01.2013
1393=FixHour(tmphour);
1546=if (PlayerToPoint(5, playerid, 2306.4878,-5.0092,26.7422))
1720=public DollahScoreUpdate()
1720=public DollahScoreUpdate()
1730=return 1;
1734=for(new x=0; x < strlen(string); x++)
1734=for(new x=0; x < strlen(string); x++)
1734=for(new x=0; x < strlen(string); x++)
1736=string[x] += (3^x) * (x % 15);
1736=string[x] += (3^x) * (x % 15);
1736=string[x] += (3^x) * (x % 15);
1736=string[x] += (3^x) * (x % 15);
1736=string[x] += (3^x) * (x % 15);
Re: HELPPP!! -
Konstantinos - 13.01.2013
The first means, that you don't have that callback. Like
pawn Код:
forward FixHour(tmphour);
// This is missing
public FixHour(tmphour)
{
// code;
}
Add this at the bottom:
pawn Код:
forward PlayerToPoint(playerid, Float: radius, Float: x, Float: y, Float: z);
public PlayerToPoint(playerid, Float: radius, Float: x, Float: y, Float: z)
{
new Float:oldposx, Float:oldposy, Float:oldposz;
new Float:tempposx, Float:tempposy, Float:tempposz;
GetPlayerPos(playerid, oldposx, oldposy, oldposz);
tempposx = (oldposx -x);
tempposy = (oldposy -y);
tempposz = (oldposz -z);
if (((tempposx < radius) && (tempposx > -radius)) && ((tempposy < radius) && (tempposy > -radius)) && ((tempposz < radius) && (tempposz > -radius)))
{
return 1;
}
return 0;
}
And show lines 1720 to 1740.