/autotp [ID]

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
  • Hallo kann mir jemand einen befehl erstellen der nur für /Rcon eingeloggte machbar ist der so funzt /autotp [ID]


    wen man das macht soll sich das auto neben einen Teleportieren oder da sman drinne sitzt ist egal

  • if(strcmp(cmd, "/autotp", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /autotp [carid]");
    return 1;
    }
    new Float:plocx,Float:plocy,Float:plocz;
    new plo;
    plo = strval(tmp);
    if (PlayerInfo[playerid][pAdmin] >= 3)
    {
    GetPlayerPos(playerid, plocx, plocy, plocz);
    SetVehiclePos(plo,plocx,plocy+4, plocz);
    }
    else
    {
    SendClientMessage(playerid, COLOR_GRAD1, " Du darfst diesen Befehl nicht benutzen!");
    }
    }
    return 1;


    /Edit Pawn Quelltext geändert

  • Hey danke schonmal bekomme aber dies hier


    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(968) : error 017: undefined symbol "cmd"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(970) : error 017: undefined symbol "playerid"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(972) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(972) : error 017: undefined symbol "strtok"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(973) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(975) : error 017: undefined symbol "playerid"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(976) : error 079: inconsistent return types (array & non-array)
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(980) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(981) : error 017: undefined symbol "PlayerInfo"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(981) : error 017: undefined symbol "playerid"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(981) : error 029: invalid expression, assumed zero
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(981) : fatal error 107: too many error messages on one line


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



    12 Errors.

  • Mein server ist fertig und Online habe 3719 Zeilen Script und der server ist auch schon online!


    Warum ?


    //edit: Baue nurnoch ein paar updates mit ein paar kleinen Feutures

  • Ja includes von 0.3b kp warum es nicht geht

    Einmal editiert, zuletzt von Keylon ()

  • wwwiner das hat nichts mit den includes zu tun sondern mit deinem code schnipsel welcher für gf ist.... Hier mal was umschreiben dann sollte es gehen.


    if(strcmp(cmd, "/autotp", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /autotp [carid]");
    return 1;
    }
    new Float:plocx,Float:plocy,Float:plocz;
    new plo;
    plo = strval(tmp);
    if (IsPlayerAdmin(playerid))
    {
    GetPlayerPos(playerid, plocx, plocy, plocz);
    SetVehiclePos(plo,plocx,plocy+4, plocz);
    }
    else
    {
    SendClientMessage(playerid, COLOR_GRAD1, " Du darfst diesen Befehl nicht benutzen!");
    }
    }
    return 1;
    }
    hm zudem war noch nen Klammerfehler drin...

  • Danke jetzt habe ich die errors


    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(968 ) : error 017: undefined symbol "cmd"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(970) : error 017: undefined symbol "playerid"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(972) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(972) : error 017: undefined symbol "cmdtext"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(973) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(975) : error 017: undefined symbol "playerid"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(980) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(981) : error 017: undefined symbol "playerid"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(983) : error 017: undefined symbol "playerid"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(988 ) : error 017: undefined symbol "playerid"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    10 Errors.

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen
  • Okey Danke das war schonmal ein teil hatte es ausversehen in Gamemodeinit


    jetzt in onplayercommandtext




    nun diese error


    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(1316) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(1317) : error 017: undefined symbol "tmp"
    D:\Pawn\pawno\Reallife GM\Reallife-Time-Beta.pwn(1324) : error 017: undefined symbol "tmp"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    3 Errors.


    //edit: okey habe oben bei includes jetzt
    #include <tmp> rein geschrieben aber mir fehlt die inc. tmp wo bekomme ich die her

    2 Mal editiert, zuletzt von Keylon ()

  • Ich denke , dass wir gleich gut Ahnung vom Scripten haben und das wichtige ist ja, dass wir
    ihm geholfen haben. Er würde sich auch bei dir bedanken , und mir geht es nicht um " Wer zuerst geantwortet hat".
    Also , lass mit dem Spamen aufhören und Schluss . 8)


    Lg,
    Spider

  • habe es hinzugefühgt doch der error bleibt der selbe Woow Spider Weise Antwort


    //Edit: wwwinner habe dir in deinem Thread geschrieben wegen dem schlüssel