HELP dini_Get - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: HELP dini_Get (
/showthread.php?tid=340756)
HELP dini_Get -
lonako45 - 08.05.2012
I use :
PHP код:
if(dini_Get(DiniHelper(playerid),"HelperLevel=0")) return SendClientMessage(playerid,White,"щзчп жд ма ъеок");
and this is get me error:
Код:
error 033: array must be indexed (variable "dini_Get")
WHY
Re: HELP dini_Get -
Slix_ - 08.05.2012
Replace:
pawn Код:
if(dini_Get(DiniHelper(playerid),"HelperLevel=0")) return SendClientMessage(playerid,White,"щзчп жд ма ъеок");
with:
pawn Код:
if(dini_Int(DiniHelper(playerid),"HelperLevel") >= 1) return SendClientMessage(playerid,White,"щзчп жд ма ъеок");
Re: HELP dini_Get -
lonako45 - 08.05.2012
K-I-N-G