Lux Admin Login Problem
#1

I have a problem with login ... i need this login/register dialogue before player spawning... here is the code of the dialogue

PHP Code:
//==============================================================================
//-------------------------------------------------
// Player Spawn
//-------------------------------------------------
//==============================================================================
public OnPlayerSpawn(playerid)
{
//==============================================================================
// Request Register
//==============================================================================
    
if(AccInfo[playerid][Registered] == && ServerInfo[MustRegister] == 1)
    {
        
#if USE_DIALOGS == true
        
new rstring[256];
        
format(rstring,256,"Welcome to the '%s'\n\nAccount '%s' is not registred!\n\nEnter the password to Register your Account:",GetServerHostName(),pName(playerid));
        
ShowPlayerDialog(playerid,DIALOGID+66,DIALOG_STYLE_INPUT,"WBTDM Register",rstring,"Register","Quit");
        
#endif
        
return 1;
    }
//==============================================================================
// Request Login
//==============================================================================
    
if(ServerInfo[MustLogin] == && AccInfo[playerid][Registered] == && AccInfo[playerid][LoggedIn] == 0)
    {
        
#if USE_DIALOGS == true
        
new lstring[256];
        
format(lstring,256,"That account '%s 'is Registered!\n\n Login to access your Account:",pName(playerid));
        
ShowPlayerDialog(playerid,DIALOGID+67,DIALOG_STYLE_INPUT,"WBTDM Login",lstring,"Login","Quit");
        
#endif
        
return 1;
    } 
When i change the this to underonplayerconnect i am getting 26 errors... please i need help with this

Thanks in Advance
YoUnG_KiD
Reply


Messages In This Thread
Lux Admin Login Problem - by YoUnG_KiD - 21.11.2011, 14:06
Re: Lux Admin Login Problem - by YoUnG_KiD - 21.11.2011, 14:55
Re: Lux Admin Login Problem - by =WoR=G4M3Ov3r - 21.11.2011, 14:59
Re: Lux Admin Login Problem - by Psymetrix - 21.11.2011, 15:00
Re: Lux Admin Login Problem - by DRIFT_HUNTER - 21.11.2011, 15:01
Re: Lux Admin Login Problem - by YoUnG_KiD - 21.11.2011, 16:28
Re: Lux Admin Login Problem - by YoUnG_KiD - 22.11.2011, 03:49
Re: Lux Admin Login Problem - by Game_Over - 22.11.2011, 04:09
Re: Lux Admin Login Problem - by Alexica721 - 09.12.2012, 14:54
Re: Lux Admin Login Problem - by The_Asker - 09.12.2012, 17:50

Forum Jump:


Users browsing this thread: 1 Guest(s)