20.07.2009, 02:30
I want to make it to where OnPlayerRequestSpawn, if they try to spawn without logging in, it wont even let them spawn. How do I do this? I searched and everything : /
so how should I do this? :/
Код:
public OnPlayerRequestSpawn
{
if (logged[playerid] == 0)
{
SendClientMessage(playerid, 0xFF0000AA, "You must be logged in to start playing");
// right here is where the "Deny Spawn" code should go

