Force a Player to Register/Login
#1

Title tells all, how to make a Player Forced to register/Login?

And, how do i delete/Bypass the Skin Selection?
Reply
#2

Well, you could block the spawn or something. I made it, that if a non-logged in player spawns, he gets teleported to the RC Hall.

Depends alot on your script.
Reply
#3

could you suggest something or...??
Reply
#4

Well, it really depends alot on your Script.
I will give you an example:

Quote:

public OnPlayerRequestSpawn(playerid)
{
if (gPlayerLogged[playerid] == 1) // Or whatever you got here
{ }
else
{
SendClientMessage(playerid, 0xFF0000AA, "Login before you spawn!");
return 0;
}
return 1;
}

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)