[Tutorial] Login and Register System - Dialogs - Using Y_INI - 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)
+---- Forum: Tutorials (
https://sampforum.blast.hk/forumdisplay.php?fid=70)
+---- Thread: [Tutorial] Login and Register System - Dialogs - Using Y_INI (
/showthread.php?tid=273088)
Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Re: Login and Register System - Dialogs - Using Y_INI -
TheMarioTR - 16.09.2019
Very Bugs..
Re: Login and Register System - Dialogs - Using Y_INI -
bero1711 - 13.11.2019
How to do that with PVars?
Code:
forward LoadUser_data(playerid,name[],value[]);
public LoadUser_data(playerid,name[],value[])
{
INI_Int("Password",PlayerInfo[playerid][pPass]);
INI_Int("Cash",PlayerInfo[playerid][pCash]);
INI_Int("Admin",PlayerInfo[playerid][pAdmin]);
INI_Int("Kills",PlayerInfo[playerid][pKills]);
INI_Int("Deaths",PlayerInfo[playerid][pDeaths]);
return 1;
}
Re: Login and Register System - Dialogs - Using Y_INI -
STORIEL000 - 29.06.2020
Hello! For some reason, when i compile i get these errors. Could someone explain what's wrong?
C:\Users\George\Desktop\samp server\pawno\include\YSI\..\YSI_Storage\..\YSI_Cor e\y_utils.inc(430) : warning 201: redefinition of constant/macro (symbol "isnull(%1)")
C:\Users\George\Desktop\samp server\pawno\Commands Test.pwn(150) : error 017: undefined symbol "PlayerInfo"
C:\Users\George\Desktop\samp server\pawno\Commands Test.pwn(150) : warning 215: expression has no effect
C:\Users\George\Desktop\samp server\pawno\Commands Test.pwn(150) : error 001: expected token: ";", but found "]"
C:\Users\George\Desktop\samp server\pawno\Commands Test.pwn(150) : error 029: invalid expression, assumed zero
C:\Users\George\Desktop\samp server\pawno\Commands Test.pwn(150) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
4 Errors.