05.10.2009, 18:46
Hey,
I'm trying to script a little for 0.3,So i dont know if i should post it here or on "0.3 Scripting" board..
Anyway,can someone show me how i can make something like,that the player spawn until he logs in?
I've done my /register+/login command by the tutorial from bogeyman_EST.
Thanks in advance.
EDIT:
I Solved it thanks to you guys,here is The solution If someone want it and dont know how:
I'm trying to script a little for 0.3,So i dont know if i should post it here or on "0.3 Scripting" board..
Anyway,can someone show me how i can make something like,that the player spawn until he logs in?
I've done my /register+/login command by the tutorial from bogeyman_EST.
Thanks in advance.
EDIT:
I Solved it thanks to you guys,here is The solution If someone want it and dont know how:
pawn Код:
public OnPlayerRequestSpawn(playerid)
{
if (logged[playerid] == 0) return 0;
{
if (logged[playerid] == 1) return 1;
}
return 1;
}