[HELP] Using Y_ini
#1

So i used this tutorial https://sampforum.blast.hk/showthread.php?tid=273088 to make a login and register for my server its going to be TDM but i want to make a rank system that could save y_ini so all the rank stats are save like if someone is a sergeant it stays there but i dont really now how to make a rank system
Please help, Thanks
Reply
#2

download a script to get an idea or https://sampforum.blast.hk/showthread.php?tid=187229
Reply
#3

Alright the seems good but its going to be difficult for me
Reply
#4

its very simple to do
Reply
#5

I cant find any good examples
Reply
#6

okay let me see

in the playerinfo put at the bottom
pTeam,
pRank

and think of a system like this
something small and understandable
pawn Код:
CMD:rank(playerid,params[])
{
 if(PlayerInfo[playerid][pTeam] == 1)
 {
  if(PlayerInfo[playerid][pRank == 1) return SendClientMessage(playerid, -1,"You are a rookie");
  if(PlayerInfo[playerid][pRank == 2) return SendClientMessage(playerid, -1,"You are a master");
 }
 else if(PlayerInfo[playerid][pTeam] == 2)
 {
 if(PlayerInfo[playerid][pRank == 1) return SendClientMessage(playerid, -1,"You are a rookie");
 if(PlayerInfo[playerid][pRank == 2) return SendClientMessage(playerid, -1,"You are a master");
 }
 return 1;
}
HOPE IT WAS UNDERSTANDABLE
Reply
#7

@AchievementMaster360 inbox me, and im sure i can help you, its actually very easy..
Reply
#8

it comes with 2 error here are the errors
Quote:

C:\Users\Felipe\Desktop\TDM Server\gamemodes\Call_Of_Duty_Beta.pwn(20) : error 001: expected token: "}", but found "-identifier-"
C:\Users\Felipe\Desktop\TDM Server\gamemodes\Call_Of_Duty_Beta.pwn(166) : warning 203: symbol is never used: "rank"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.

Script

Quote:

#include <YSI\y_ini>
#define DIALOG_REGISTER 1
#define DIALOG_LOGIN 2
#define DIALOG_SUCCESS_1 3
#define DIALOG_SUCCESS_2 4
#define PATH "/Users/%s.ini"
#define COL_WHITE "{FFFFFF}"
#define COL_RED "{F81414}"
#define COL_GREEN "{00FF22}"
#define COL_LIGHTBLUE "{00CED1}"

enum pInfo
{
pPass,
pCash,
pAdmin,
pKills,
pDeaths
pTeam,
pRank,
}
new PlayerInfo[MAX_PLAYERS][pInfo];
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;
}

stock UserPath(playerid)
{
new string[128],playername[MAX_PLAYER_NAME];
GetPlayerName(playerid,playername,sizeof(playernam e));
format(string,sizeof(string),PATH,playername);
return string;
}

stock udb_hash(buf[]) {
new length=strlen(buf);
new s1 = 1;
new s2 = 0;
new n;
for (n=0; n<length; n++)
{
s1 = (s1 + buf[n]) % 65521;
s2 = (s2 + s1) % 65521;
}
return (s2 << 16) + s1;
}

public OnPlayerConnect(playerid)
{
if(fexist(UserPath(playerid)))
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_WHITE" Type your password below to login.","Login","Quit");
}
else
{
ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT,""COL_WHITE"Registration",""COL _WHITE"Type your password below to register a new account.","Register","Quit");
}
return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
switch( dialogid )
{
case DIALOG_REGISTER:
{
if (!response) return Kick(playerid);
if(response)
{
if(!strlen(inputtext)) return ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_INPUT, ""COL_WHITE"Registration",""COL_RED"You have entered an invalid password.\n"COL_WHITE"Type your password below to register a new account.","Register","Quit");
new INI:File = INI_Open(UserPath(playerid));
INI_SetTag(File,"data");
INI_WriteInt(File,"Password",udb_hash(inputtext));
INI_WriteInt(File,"Cash",0);
INI_WriteInt(File,"Admin",0);
INI_WriteInt(File,"Kills",0);
INI_WriteInt(File,"Deaths",0);
INI_Close(File);

SetSpawnInfo(playerid, 0, 0, 1958.33, 1343.12, 15.36, 269.15, 0, 0, 0, 0, 0, 0);
SpawnPlayer(playerid);
ShowPlayerDialog(playerid, DIALOG_SUCCESS_1, DIALOG_STYLE_MSGBOX,""COL_WHITE"Success!",""COL_GR EEN"Remember To Follow All Rules And Respect Each Other!","Ok","");
}
}

case DIALOG_LOGIN:
{
if ( !response ) return Kick ( playerid );
if( response )
{
if(udb_hash(inputtext) == PlayerInfo[playerid][pPass])
{
INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
GivePlayerMoney(playerid, PlayerInfo[playerid][pCash]);
ShowPlayerDialog(playerid, DIALOG_SUCCESS_2, DIALOG_STYLE_MSGBOX,""COL_WHITE"Welcome!",""COL_GR EEN"You have successfully logged in!","Ok","");
}
else
{
ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,""COL_WHITE"Login",""COL_RED"Yo u have entered an incorrect password.\n"COL_WHITE"Type your password below to login.","Login","Quit");
}
return 1;
}
}
}
return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
new INI:File = INI_Open(UserPath(playerid));
INI_SetTag(File,"data");
INI_WriteInt(File,"Cash",GetPlayerMoney(playerid)) ;
INI_WriteInt(File,"Admin",PlayerInfo[playerid][pAdmin]);
INI_WriteInt(File,"Kills",PlayerInfo[playerid][pKills]);
INI_WriteInt(File,"Deaths",PlayerInfo[playerid][pDeaths]);
INI_Close(File);
return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
PlayerInfo[killerid][pKills]++;
PlayerInfo[playerid][pDeaths]++;
return 1;
}
CMD:rank(playerid,params[])
{
if(PlayerInfo[playerid][pTeam] == 1)
{
if(PlayerInfo[playerid][pRank == 1) return SendClientMessage(playerid, -1,"You are a rookie");
if(PlayerInfo[playerid][pRank == 2) return SendClientMessage(playerid, -1,"You are a master");
}
else if(PlayerInfo[playerid][pTeam] == 2)
{
if(PlayerInfo[playerid][pRank == 1) return SendClientMessage(playerid, -1,"You are a rookie");
if(PlayerInfo[playerid][pRank == 2) return SendClientMessage(playerid, -1,"You are a master");
}
return 1;
}

Reply
#9

Can you please show the exact line you got error at?
Reply
#10

Dude in the enum you forgot something you forgot a comma with the pDeaths do make it like pDeaths,
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)