SA-MP Forums Archive
Help 4 Error + 1 Warning in 1 Line - 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)
+--- Thread: Help 4 Error + 1 Warning in 1 Line (/showthread.php?tid=385510)



Help 4 Error + 1 Warning in 1 Line - RenovanZ - 16.10.2012

Removed


Re: Help 4 Error + 1 Warning in 1 Line - Don_Cage - 16.10.2012

Код:
if(!gPlayerLogged(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
try change to
Код:
if(!gPlayerLogged(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.";



AW: Help 4 Error + 1 Warning in 1 Line - BiosMarcel - 16.10.2012

I think that you mean this

PHP код:
       if(gPlayerLogged[playerid] != 1) return SendClientMessage(playeridCOLOR_GREY"You need to login first before using any command."); 
DOn_Cage you can't remove a ) he must close the sendclientmessage


Re: Help 4 Error + 1 Warning in 1 Line - Lordzy - 16.10.2012

Quote:
Originally Posted by Don_Cage
Посмотреть сообщение
Код:
if(!gPlayerLogged(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
try change to
Код:
if(!gPlayerLogged(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.";
That won't.

Well the functions gIsLoggedIn seems to be undefined/not created.


Re : Help 4 Error + 1 Warning in 1 Line - yusei - 16.10.2012

Код:
if(!gPlayerLogged[playerid]) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");



AW: Help 4 Error + 1 Warning in 1 Line - BiosMarcel - 16.10.2012

yusei why did you write the same thing how me ^^


Re : Help 4 Error + 1 Warning in 1 Line - yusei - 16.10.2012

if(gPlayerLogged[playerid] != 1) /// if(!gPlayerLogged[playerid])
a same thing ? ?,



Re: Help 4 Error + 1 Warning in 1 Line - RenovanZ - 16.10.2012

Removed


AW: Help 4 Error + 1 Warning in 1 Line - BiosMarcel - 16.10.2012

@yusei Yes yusei its the same
@Kiyozi_Mu No Problem


Re : AW: Help 4 Error + 1 Warning in 1 Line - yusei - 16.10.2012

Quote:
Originally Posted by [Bios]Marcel
Посмотреть сообщение
@yusei Yes yusei its the same
@Kiyozi_Mu No Problem
sorry I did not see your code