Found this but not that bouring error .. -.- -
Private200 - 27.01.2013
Codes
pawn Код:
if (APlayerData[playerid][LoggedIn] == true)
{
if IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389))
{
// Check if the player doesn't have a bank account
if (!fexist(file))
{
Errors :
Код:
C:\DOCUME~1\Private\Desktop\NEWFOL~1\pawno\include\Files.inc(4853) : error 001: expected token: "*then", but found ")"
C:\DOCUME~1\Private\Desktop\NEWFOL~1\pawno\include\Files.inc(4853) : error 029: invalid expression, assumed zero
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
2 Errors.
Rep+
Re: Found this but not that bouring error .. -.- -
mineralo - 27.01.2013
you've error in files.inc ( include ) find that line IN INCLUDE and post here
Re: Found this but not that bouring error .. -.- -
FUNExtreme - 27.01.2013
pawn Код:
if IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389))
There is something missing in that line
Re: Found this but not that bouring error .. -.- -
ikbenremco - 27.01.2013
if(IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389)) the ( infront I
Re: Found this but not that bouring error .. -.- -
Private200 - 28.01.2013
Quote:
Originally Posted by ikbenremco
if(IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389)) the ( infront I
|
Thanks ill try that later as i am not in home now .
Quote:
Originally Posted by FUNExtreme
pawn Код:
if IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389))
There is something missing in that line
|
I already knew that .
Re: Found this but not that bouring error .. -.- -
Glad2BeHere - 28.01.2013
Код:
This will give u more detail understanding of what your are doing
https://sampforum.blast.hk/showthread.php?tid=273088
Re: Found this but not that bouring error .. -.- -
Private200 - 29.01.2013
Quote:
Originally Posted by Glad2BeHere
|
What can be this helping me for ? It is out of topic . Nothing related to my question .
Re: Found this but not that bouring error .. -.- -
Ayumi - 29.01.2013
pawn Код:
if (APlayerData[playerid][LoggedIn] == true)
{
if IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389))
{
// Check if the player doesn't have a bank account
if (!fexist(file))
{
The above code is yours.
Your errors are stating that on this line of the code taken from above:
pawn Код:
if IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389))
Your brackets don't match up.
Quote:
if IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389))
|
Marked in green above is the opening brackets of that line. Marked in red is the closing brackets of that line. It is on a 1/2 ratio, meaning that the 'equation' is not equal. You have tried to close something from that statement that isn't there.
--
Try the code below and tell me your results:
pawn Код:
if(!IsPlayerInRangeOfPoint(playerid, 4, 361.8270, 174.0347, 1008.389))
Re: Found this but not that bouring error .. -.- -
DaRk_RaiN - 29.01.2013
Kinda oblivious
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 4.0, 361.8270, 174.0347, 1008.389))