Skins

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

  • ocmd:setskin(playerid,params[])
    {
    new string[128],string2[128],pID,skin;
    if(!IstSpielerAdmin(playerid,2))return SendClientMessage(playerid,ROT,"Zugriff verweigert. Benötigter Rang: Trial Admin");
    if(pID == INVALID_PLAYER_ID)return SendClientMessage(playerid,ROT,"Angegebener Spieler ist nicht connected!");
    if(!IsPlayerConnected(pID))return SendClientMessage(playerid,ROT,"Angegebener Spieler ist nicht connected!");
    if(sscanf(params,"ui",pID,skin))return SendClientMessage(playerid,ROT,"Benutzung: /skin [Player ID/Name] [Skinid]");
    if(skin <0 || skin >299)return SendClientMessage(playerid,ROT,"Die SkinID darf nicht unter 0 und über 299 sein!");
    if(IstSpielerAdmin(playerid,2))
    {
    format(string,sizeof(string),"[AdmCmd] %s hat dir den Skin %i gegeben",SpielerName(playerid),skin);
    format(string2,sizeof(string2),"[AdmCmd] Du hast %s den Skin %i gegeben",SpielerName(pID),skin);
    SendClientMessage(pID,ROT,string);
    SendClientMessage(playerid,ROT,string2);
    SetPlayerSkin(pID,skin);
    return 1;
    }
    return 1;
    }

    Musst halt durch deine Admin-Abfrage ersetzten.

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.

  • C:\Users\Mehmet Ali\Desktop\GTA Sa\[GSF]Selfmade\gamemodes\[GSF]Selfmade.pwn(1231) : error 029: invalid expression, assumed zero
    C:\Users\Mehmet Ali\Desktop\GTA Sa\[GSF]Selfmade\gamemodes\[GSF]Selfmade.pwn(1231) : error 017: undefined symbol "ocmd_setskin"
    C:\Users\Mehmet Ali\Desktop\GTA Sa\[GSF]Selfmade\gamemodes\[GSF]Selfmade.pwn(1231) : error 029: invalid expression, assumed zero
    C:\Users\Mehmet Ali\Desktop\GTA Sa\[GSF]Selfmade\gamemodes\[GSF]Selfmade.pwn(1231) : fatal error 107: too many error messages on one line


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



    4 Errors.


    Zeile:
    ocmd:setskin(playerid,params[])


    :O


  • #include <ocmd>
    ocmd:setskin(playerid,params[])
    {
    new skin;
    if(sscanf(params, "d",skin))
    {
    return SendClientMessage(playerid,COLOR_GRAD1,"Fehler: /skin [SkinID]");
    }
    SetPlayerSkin(playerid, skin);
    return 1;
    }

  • Mein Code ist einwandfrei nur wenn du halt kein Ocmd hast weiß ich auch nicht :O

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen
  • Du hast nicht das OCMD Include.
    Alle beiden Codeschnipsel funktionieren.

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.

  • Der Code funktioniert.
    Bitte sag mir jetzt nicht dass du die Commands unter einem Callback eingefügt hast oder?

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.

  • Dann ist es kein Wunder das es nicht funktioniert. Einfach die OCMD Commands außerhalb eines Callbacks einfügen also am besten ganz unten.



    MFG

    Main: CPU: Intel Core i5-4440 @ 3,10 GHz | CPU-Cooling: Matterhorn -PURE- | RAM: 16GB Crucial Ballistix Sport DDR3-1600 DIMM CL9-9-9-24 |
    Motherboard: ASRock B85M Pro4 | GPU: Sapphire Radeon R9 390X Nitro 8GB GDDR5 |

    SSD: Samsung SSD 840 Evo 500GB | Power Supply: 550 Watt Corsair CS Series Modular 80+ Gold | Case: beQuiet! Silent Base 800


    As I walk through the valley of the shadow of death
    I take a look at my life and realize there's nothin' left.

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