[HELP] Is it possible, how ?
#1

Hey, i wan't to delete the dialogue box : "<<" ">>" "SPAWN" when player joins to my server, because there is a bug. is it possible to remove it?

Reply
#2

I dont think so no
Reply
#3

pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
TogglePlayerSpectating(playerid, 1);
return 1;
}

public OnPlayerSpawn(playerid)
{
TogglePlayerSpectating(playerid, 0);
return 1;
}
Reply
#4

Код:
public OnPlayerConnect(playerid)
{
TogglePlayerSpectating(playerid, 1);
return 1;
}

public OnPlayerLogin(playerid,password[])
{
TogglePlayerSpectating(playerid, 0);
return 1;
}
as he shows int he picture the problem its at login so yeah i belive that will make it also if you have to change
if on player request class
remove everything on that public and use spawnplayer(playerid);

Reply
#5

The login doesnt necessarily have to be under onplayerconnect...
The code I posted is right
Reply
#6

what he is trying to get rid off its the skin choser on player connect

that skin chose has nothing to do with the login dialog at all so yeah i belive the way i showed it will work

and if im wrong wich i think im not dont flame
Reply
#7

yes it works, thanks !

Can you also help me in this thread ?
http://forum.sa-mp.com/index.php?topic=153985.0

The problem is, after registering and some minutes of playing, im trying to connect again and it says wrong password. The problem is not in encrypt i think ;/
Reply
#8

no problem
Reply
#9

Quote:
Originally Posted by [GM
LeGenDy ]
what he is trying to get rid off its the skin choser on player connect

that skin chose has nothing to do with the login dialog at all so yeah i belive the way i showed it will work

and if im wrong wich i think im not dont flame
Actually, they will both work

Ontopic: Ima check out your other thread now
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)