Dialog Help Not Showing right
#4

dont think it works like that ive got this for the dialog

pawn Код:
// Get the playername
    GetPlayerName(playerid, Name, sizeof(Name));
    // Also store this name for the player
    GetPlayerName(playerid, APlayerData[playerid][PlayerName], 24);
GetPlayerName(playerid, Rname, sizeof(Rname));
    // Send a message to all players to let them know somebody else joined the server
   
   format(NewPlayerMsg, 128, TXT_PlayerJoinedServer, Name, playerid);
   SendClientMessageToAll(0xFFFFFFFF, NewPlayerMsg);

    // Try to load the player's datafile ("PlayerFile_Load" returns "1" is the file has been read, "0" when the file cannot be read)
    if (PlayerFile_Load(playerid) == 1)
    {
        // Check if the player is still banned
        if (APlayerData[playerid][BanTime] < gettime()) // Player ban-time is passed
            ShowPlayerDialog(playerid, DialogLogin, DIALOG_STYLE_INPUT, TXT_DialogLoginTitle,  TXT_DialogLoginMsg, Rname, TXT_DialogLoginButton1, TXT_DialogButtonCancel);
        else // Player is still banned
        {
            ShowRemainingBanTime(playerid); // Show the remaining ban-time to the player is days, hours, minutes, seconds
            Kick(playerid); // Kick the player
        }
    }
    else
        ShowPlayerDialog(playerid, DialogRegister, DIALOG_STYLE_INPUT, TXT_DialogRegisterTitle, TXT_DialogRegisterMsg, TXT_DialogRegisterButton1, TXT_DialogButtonCancel);
Reply


Messages In This Thread
Dialog Help Not Showing right - by [LHT]Bally - 28.01.2013, 17:33
Re: Dialog Help Not Showing right - by daniboi229 - 28.01.2013, 17:36
Re: Dialog Help Not Showing right - by Youice - 28.01.2013, 17:38
Re: Dialog Help Not Showing right - by [LHT]Bally - 28.01.2013, 17:51
Re: Dialog Help Not Showing right - by Stevo127 - 28.01.2013, 17:52
Re: Dialog Help Not Showing right - by [LHT]Bally - 28.01.2013, 20:25
Re: Dialog Help Not Showing right - by DaRk_RaiN - 28.01.2013, 20:34
Re: Dialog Help Not Showing right - by [LHT]Bally - 28.01.2013, 20:55
Re: Dialog Help Not Showing right - by Stevo127 - 29.01.2013, 14:39
Re: Dialog Help Not Showing right - by [LHT]Bally - 29.01.2013, 16:39

Forum Jump:


Users browsing this thread: 1 Guest(s)