gui problem

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • ixh habe ein login gui gemacht
    einlogen geht
    aber wie scripte ich den zweiten button
    so hab ich es im mom
    if(dialogid == 0)
    {
    if(strlen(inputtext))
    {
    new tmppass[64];
    strmid(tmppass, inputtext, 0, strlen(inputtext), 255);
    Encrypt(tmppass);
    OnPlayerLogin(playerid,tmppass);
    }
    else
    {
    Kick(playerid);
    }
    }

  • http://wiki.sa-mp.com/wiki/OnDialogResponse


    Code
    playerid	The ID of the player who responded to the dialog box.
    dialogid	The ID of the dialog the player responded to, assigned in ShowPlayerDialog.
    response	1 for first button and 0 for second button
    listitem	The ID of the list item selected by the player.
    inputtext[]	The text entered into the input box by the player or the selected list item text.


    Schau dir besonders

    Code
    response	1 for first button and 0 for second button

    an ;)


    MFG, Robdeflop®