03.03.2014, 18:31
(
Last edited by AlonzoTorres; 03/03/2014 at 11:22 PM.
)
Resetting of Variables
This is a quick tutorial which will cover a subject which always end up in the Scripting Help section of the forum. I'm talking about resetting of variables. The goal of this tutorial is to teach you why sometimes when a player joins this player receives another player's variable.
Let's say you have an script setup like this:
Well once the player has logged in and if there's no one else on the server he'll get ID 0,
James_Carter (ID: 0) Connected.
Above you can tell by the logs that James_Carter set THE ID OF ZERO (0) to be level 5 administrator.
James_Carter (ID: 0) Disconnected.
Please note that gPlayerInfo[0][pAdminLVL] is still set to 5!
Hannah_Lake (ID: 0) Connected.
This is when the real problem occur. Now that Hannah connects she inherits the ID of James_Carter and so also the level 5 administrator rank. How can we solve this? Easy! All you have to do is the following:
EDIT: (Thanks to Macluawn for reminding me.) There's also a more efficient but advanced way to do it by resetting the enum in a loop:
This will print:
Conclusion
You have to reset all your variables when the user connect and after that you continue with the login/register process which will initialize the correct values for all your variables. That's it, thanks for reading!
This is a quick tutorial which will cover a subject which always end up in the Scripting Help section of the forum. I'm talking about resetting of variables. The goal of this tutorial is to teach you why sometimes when a player joins this player receives another player's variable.
Let's say you have an script setup like this:
pawn Code:
#include <a_samp>
#include <YSI\y_commands>
#include <sscanf2>
enum pBlueprint{
pAdminLVL,
};
new gPlayerInfo[MAX_PLAYERS][pBlueprint];
public OnPlayerConnect(playerid){
if( !fexist( GetUserPath(playerid ) ) )
{
SendClientMessage(playerid, COLOR_YELLOW, "Please /register to register an account.");
}
else{
SendClientMessage(playerid, COLOR_YELLOW, "Please /login to login to your account.");
}
return 1;
}
public OnPlayerDisconnect(playerid, reason){
SavePlayer(playerid);
return 1;
}
CMD:register(playerid, params[]){
// Here you save the user using your system of choice.
}
CMD:login(playerid, params[]){
// Here you login the user.
}
CMD:setadmin(playerid, params[]){
new TargetID, TargetLVL;
if(sscanf(params, "ii", TargetID, TargetLVL)) return SendClientMessage(playerid, COLOR_YELLOW,
"Usage: /setadmin [Target ID] [Target LVL]"
);
gPlayerInfo[TargetID][pAdminLVL] = TargetLVL;
return 1;
}
Well once the player has logged in and if there's no one else on the server he'll get ID 0,

Quote:
LOG: James_Carter used /setadmin 0 5 |

Please note that gPlayerInfo[0][pAdminLVL] is still set to 5!

This is when the real problem occur. Now that Hannah connects she inherits the ID of James_Carter and so also the level 5 administrator rank. How can we solve this? Easy! All you have to do is the following:
pawn Code:
public OnPlayerConnect(playerid){
gPlayerInfo[playerid][pAdminLVL] = 0;
}
pawn Code:
public OnPlayerConnect(playerid){
gPlayerInfo[playerid][pAdminLVL] = 51;
printf("%d", gPlayerInfo[playerid][pAdminLVL]);
for(new i; pBlueprint:i < pBlueprint; i++)
{
gPlayerInfo[playerid][pBlueprint:i] = 0;
}
printf("%d", gPlayerInfo[playerid][pAdminLVL]);
}
Quote:
51 0 |
You have to reset all your variables when the user connect and after that you continue with the login/register process which will initialize the correct values for all your variables. That's it, thanks for reading!