[MySQL] Advanced Registration System
#10

Nice tutorial, Noticed an error:

pawn Code:
function OnPlayerLogin(playerid) {
  // In this function you can make a user forcespawn. This is called after someone logged in..
  GivePlayerMoney(playerid, PlayerAccount[playerid][Money]);
  SetPlayerHealth(playerid, PlayerAccount[playerid][Health]);
  SetPlayerHealth(playerid, PlayerAccount[playerid][Armour]);
  AccountData[playerid][Logged] = true;
}
Should be
pawn Code:
function OnPlayerLogin(playerid) {
  // In this function you can make a user forcespawn. This is called after someone logged in..
  GivePlayerMoney(playerid, PlayerAccount[playerid][Money]);
  SetPlayerHealth(playerid, PlayerAccount[playerid][Health]);
  SetPlayerArmour(playerid, PlayerAccount[playerid][Armour]);
  AccountData[playerid][Logged] = true;
}
Reply


Messages In This Thread
[MySQL] Advanced Registration System - by Carlton - 13.03.2010, 01:12
Re: [MySQL] Advanced Registration System - by Carlton - 13.03.2010, 11:29
Re: [MySQL] Advanced Registration System - by [MWR]Blood - 13.03.2010, 11:46
Re: [MySQL] Advanced Registration System - by Calgon - 13.03.2010, 16:32
Re: [MySQL] Advanced Registration System - by Joe Staff - 13.03.2010, 16:42
Re: [MySQL] Advanced Registration System - by Carlton - 13.03.2010, 19:23
Re: [MySQL] Advanced Registration System - by Kyosaur - 15.03.2010, 02:38
Re: [MySQL] Advanced Registration System - by [03]Garsino - 18.03.2010, 16:35
Re: [MySQL] Advanced Registration System - by Carlton - 18.03.2010, 19:38
Re: [MySQL] Advanced Registration System - by acade - 20.03.2010, 00:15

Forum Jump:


Users browsing this thread: 1 Guest(s)