Wbb_Connect v2 | Anleitung wie man damit Scriptet

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
  • This?


    new Namewbb[MAX_PLAYER_NAME];
    GetPlayerName(playerid,Namewbb,MAX_PLAYER_NAME);
    WBB_AddUser(Namewbb,"info@youtube.de",inputtext,1); // NAME | EMAIL | PASSWORT
    WBB_SetUserToGroup(Namewbb,3); // NAME | RankID
    WBB_EnableUser(Namewbb); // NAME


    Und was ist "info@youtube.de"?
    Wo holt er den das Passwort her?



    edit:


    Habe das mal eingefügt unter OnPlayerRegister und dies kommt raus


    C:\Dokumente und Einstellungen\René\Desktop\SCript\gamemodes\RGR.pwn(15446) : error 017: undefined symbol "inputtext"
    C:\Dokumente und Einstellungen\René\Desktop\SCript\gamemodes\RGR.pwn(46687) : warning 219: local variable "ID" shadows a variable at a preceding level
    C:\Dokumente und Einstellungen\René\Desktop\SCript\gamemodes\RGR.pwn(50285) : warning 219: local variable "mod" shadows a variable at a preceding level
    C:\Dokumente und Einstellungen\René\Desktop\SCript\gamemodes\RGR.pwn(27906) : warning 204: symbol is assigned a value that is never used: "startedrace"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    1 Error.

  • Muss ich bei info@youtube.de was anderes eintragen?
    Wo holt er das Passwort denn her?
    Guck mal 2Post über meinen habe was Editiert....



    Edit:


    Habe das jetzt so gemacht ist das richtig?


    if(dialogid == DIALOG_REG)
    {
    if(response)
    {
    format(string,sizeof(string),""#COL_WHITE""#COL_WHITE"Willkommen auf "#COL_RED"Real "#COL_WHITE"German"#COL_RED" Roleplay"#COL_WHITE"!\nDu hast nun die möglichkeit, dich zu Registrieren.\n\nBenutzername: "#COL_DARKGREEN"%s\n\n"#COL_WHITE"Gib das Passwort für deinen Account ein:",name);
    ShowPlayerDialog(playerid,DIALOG_REG2,DIALOG_STYLE_INPUT,""#COL_RED"[SoR]"#COL_WHITE" - Benutzerregistration",string,"Einloggen","Abbrechen");
    if(PlayerInfo[playerid][pReg] == 0)
    {
    format(string, sizeof(string), "Willkommen auf Style Of Roleplay. Jetzt folgt eine kleine Einführung in den Server.");
    SendClientMessage(playerid, COLOR_YELLOW,string);
    }
    }
    else
    {
    format(string,sizeof(string),""#COL_WHITE""#COL_WHITE"Willkommen auf "#COL_RED"Real "#COL_WHITE"German"#COL_RED" Roleplay"#COL_WHITE"!\nDu benötigst einen Account, um auf diesem Server spielen zu können!\n\nBenutzername: "#COL_DARKGREEN"%s",name);
    ShowPlayerDialog(playerid,DIALOG_REG,DIALOG_STYLE_MSGBOX,""#COL_RED"[SoR]"#COL_WHITE" - Accountinformation",string,"Erstellen","Abbrechen");
    }
    }
    if(dialogid == DIALOG_REG2)
    {
    if(response && strlen(inputtext) > 0)
    {
    OnPlayerRegister(playerid,inputtext);
    }
    else
    {
    format(string,sizeof(string),""#COL_WHITE""#COL_WHITE"Willkommen auf "#COL_RED"Real "#COL_WHITE"German"#COL_RED" Roleplay"#COL_WHITE"!\nDu hast nun die möglichkeit, dich zu Registrieren.\n\nBenutzername: "#COL_DARKGREEN"%s\n\n"#COL_WHITE"Gib das Passwort für deinen Account ein:",name);
    ShowPlayerDialog(playerid,DIALOG_REG2,DIALOG_STYLE_INPUT,""#COL_RED"[SoR]"#COL_WHITE" - Benutzerregistration",string,"Einloggen","Abbrechen");

    new Namewbb[MAX_PLAYER_NAME];
    GetPlayerName(playerid,Namewbb,MAX_PLAYER_NAME);
    WBB_AddUser(Namewbb,"info@youtube.de",inputtext,1); // NAME | EMAIL | PASSWORT
    WBB_SetUserToGroup(Namewbb,3); // NAME | RankID
    WBB_EnableUser(Namewbb); // NAME
    }
    }

  • if(dialogid == DIALOG_REG)
    {
    if(response)
    {
    format(string,sizeof(string),""#COL_WHITE""#COL_WHITE"Willkommen auf "#COL_RED"Real "#COL_WHITE"German"#COL_RED" Roleplay"#COL_WHITE"!\nDu hast nun die möglichkeit, dich zu Registrieren.\n\nBenutzername: "#COL_DARKGREEN"%s\n\n"#COL_WHITE"Gib das Passwort für deinen Account ein:",name);
    ShowPlayerDialog(playerid,DIALOG_REG2,DIALOG_STYLE_INPUT,""#COL_RED"[SoR]"#COL_WHITE" - Benutzerregistration",string,"Einloggen","Abbrechen");
    if(PlayerInfo[playerid][pReg] == 0)
    {
    format(string, sizeof(string), "Willkommen auf Style Of Roleplay. Jetzt folgt eine kleine Einführung in den Server.");
    SendClientMessage(playerid, COLOR_YELLOW,string);
    }
    }
    else
    {
    format(string,sizeof(string),""#COL_WHITE""#COL_WHITE"Willkommen auf "#COL_RED"Real "#COL_WHITE"German"#COL_RED" Roleplay"#COL_WHITE"!\nDu benötigst einen Account, um auf diesem Server spielen zu können!\n\nBenutzername: "#COL_DARKGREEN"%s",name);
    ShowPlayerDialog(playerid,DIALOG_REG,DIALOG_STYLE_MSGBOX,""#COL_RED"[SoR]"#COL_WHITE" - Accountinformation",string,"Erstellen","Abbrechen");
    }
    }
    if(dialogid == DIALOG_REG2)
    {
    if(response && strlen(inputtext) > 0)
    {
    OnPlayerRegister(playerid,inputtext);
    new Namewbb[MAX_PLAYER_NAME];
    GetPlayerName(playerid,Namewbb,MAX_PLAYER_NAME);
    WBB_AddUser(Namewbb,"info@youtube.de",inputtext,1); // NAME | EMAIL | PASSWORT
    WBB_SetUserToGroup(Namewbb,3); // NAME | RankID
    WBB_EnableUser(Namewbb); // NAME



    }
    else
    {
    format(string,sizeof(string),""#COL_WHITE""#COL_WHITE"Willkommen auf "#COL_RED"Real "#COL_WHITE"German"#COL_RED" Roleplay"#COL_WHITE"!\nDu hast nun die möglichkeit, dich zu Registrieren.\n\nBenutzername: "#COL_DARKGREEN"%s\n\n"#COL_WHITE"Gib das Passwort für deinen Account ein:",name);
    ShowPlayerDialog(playerid,DIALOG_REG2,DIALOG_STYLE_INPUT,""#COL_RED"[SoR]"#COL_WHITE" - Benutzerregistration",string,"Einloggen","Abbrechen");



    }
    }

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen
  • Könnte mir jemand helfen i bekomme immer folgende fehlermeldungen i habe alles gemacht wie es da stande..

    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(68) : error 017: undefined symbol "CallRemoteFunction"
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(70) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(73) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(76) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(79) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(82) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(85) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(88) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(91) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(94) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(100) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(103) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(106) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(109) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(112) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(115) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(118) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(121) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(124) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(127) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(130) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(133) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(136) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(139) : error 010: invalid function or declaration
    C:\Users\chrisi\Desktop\Godfather\pawno\include\wbb_connect.inc(142) : error 010: invalid function or declaration


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


    26 Errors.

  • [18:31:49] === WBB_Connect: ===An error occurred!
    WBB_Connect interface response: 1 at ====================
    Guten Tag, ich bekomme den Fehler hier.
    Ich habe das Forum so angegeben:
    kugeldream.de/lyl
    Der Authcode stimmt auch zu 100%
    Was ist falsch? LG

  • Hast du schon den WBB_Connect Helper benutzt?
    Achja, Support zum WBB_Connect gibt es ab jetzt ausschließlich in dem WBB_Connect Thread.
    Ich werde diese Woche noch ein ordentliches und verständliches Tutorial zur Benutzung des WBB_Connects und der Fehleraufspürung schreiben.

    PAWNit gratis nutzen?
    Geschenkcode: 2017VQXPKB8V3KA

    Hier könnte Ihre Werbung stehen.

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen