SA-MP Forums Archive
On player connect, give player variables - 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: On player connect, give player variables (/showthread.php?tid=610020)



On player connect, give player variables - JXF - 18.06.2016

So I would like to give a player the pAdmin variable, which is under my enum. When the player with the name "JXF" would connect, I would like the server to give him the pAdmin variable with the level 1338. How would I manage to do that?

Here's my strcmp code:
Код:
forward NameJXF(playerid);
public NameJXF(playerid)
{
	if(IsPlayerConnected(playerid))
	{
		new nume[24];
		GetPlayerName(playerid, nume, sizeof(nume));
		if((strcmp(nume, "JXF", true) == 0))
		{
			return 1;
		}
	}
	return 0;
}
EDIT:
I have tried to do the On player connect to give player variables with SetPVarInt
This is my code:
Код:
public OnPlayerConnect(playerid) 
{ 
    if(NameJXF(playerid)) 
	{
		new string[128];
		format(string, sizeof(string), "You have been given full administrator rights, master!");
		SCM(pid, COLOR_AQUA, string);
		SetPVarInt(playerid, Player[playerid][pAdmin], 1339);
	}
IT does compile, but it doesn't work properly. What is the issue here?
P.S I have never used setpvarint ever before.


Re: On player connect, give player variables - MBilal - 18.06.2016

But anybudy who just connect with JXF tag he will get Admin level.
You must check that after player Logged properly.

Код:
public OnPlayerConnect(playerid)
{
	  if(strfind(GetName(playerid),"JXF", true) != -1)
	  { 		new string[128];
		format(string, sizeof(string), "You have been given full administrator rights, master!");
		SCM(pid, COLOR_AQUA, string);
		SetPVarInt(playerid, Player[playerid][pAdmin], 1339);
	}
}

GetName(playerid)
{
	new JName[MAX_PLAYER_NAME];
	GetPlayerName(playerid,JName,MAX_PLAYER_NAME);
	return JName;
}



Re: On player connect, give player variables - JXF - 18.06.2016

what does strfind and why would I not use strcmp instead?
I read the wiki and I don't understand it clearly.


Re: On player connect, give player variables - MBilal - 18.06.2016

This will match both strings Like nume have JXFF1
so it will try match it with JXF you can see clearly both are different they are not matching.
if((strcmp(nume, "JXF", true) == 0))

about strfind it will find the JXF in the name of player.

wiki pedia.

(const string[],const sub[],bool:ignorecase=false,pos=0)

const string[] The string you want to search in (haystack).
here GetName(playerid) string You're searching in player name JXF

const sub[] The string you want to search for (needle).
JXF

strfind(GetName(playerid),"JXF",true)


Re: On player connect, give player variables - JXF - 19.06.2016

the SetPVarInt does not work.
enum:
Код:
enum PlayerInfo
{
	pAdmin
Код:
new Player[MAX_PLAYERS][PlayerInfo];
why doesnt the setpvarint work?


Re: On player connect, give player variables - oMa37 - 19.06.2016

use
PHP код:
Player[playerid][pAdmin] = 1339



Re: On player connect, give player variables - JXF - 19.06.2016

thank you oma, and also thank you bilal for the tips.