Pickup help

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
  • if(strcmp(cmd, "/pickup", true) == 0)
    {
    if(PlayerInfo[playerid][pAdmin] >= 3)
    {
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /pickup [pickup id]");
    return 1;
    }
    {
    GetPlayerPos(playerid, x, y, z);
    format(string,sizeof(nstring),"Du hast Pickup ID %d gespawnt.", pickupid);
    SendClientMessage(playerid, COLOR_GREEN2, nstring);
    CreatePickup(pickupid, 2, x+2,y+2,z);
    }
    }
    return 1;
    }


    C:\DOKUME~1\Michael2\Desktop\GTASER~1\GAMEMO~1\reallife.pwn(669) : error 017: undefined symbol "COLOR_GRAD2"
    C:\DOKUME~1\Michael2\Desktop\GTASER~1\GAMEMO~1\reallife.pwn(673) : error 017: undefined symbol "x"
    C:\DOKUME~1\Michael2\Desktop\GTASER~1\GAMEMO~1\reallife.pwn(674) : error 017: undefined symbol "nstring"
    C:\DOKUME~1\Michael2\Desktop\GTASER~1\GAMEMO~1\reallife.pwn(674) : error 029: invalid expression, assumed zero
    C:\DOKUME~1\Michael2\Desktop\GTASER~1\GAMEMO~1\reallife.pwn(674) : warning 215: expression has no effect
    C:\DOKUME~1\Michael2\Desktop\GTASER~1\GAMEMO~1\reallife.pwn(675) : error 017: undefined symbol "COLOR_GREEN2"
    C:\DOKUME~1\Michael2\Desktop\GTASER~1\GAMEMO~1\reallife.pwn(676) : error 017: undefined symbol "pickupid"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    6 Errors.


    brauche mal bittte hilfe ?(?(

  • du musst COLOR_GRAD2 oben definieren
    und der code muss glaub so sein^^
    if(strcmp(cmd, "/pickup", true) == 0)
    {
    if(PlayerInfo[playerid][pAdmin] >= 3) {
    new nstring[64];
    new pickupid[24];
    new Float:x,Float:y,Float:z;
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp)) {
    SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /pickup [pickup id]");
    return 1;
    }
    {
    GetPlayerPos(playerid, x, y, z);
    format(string,sizeof(nstring),"Du hast Pickup ID %d gespawnt.", pickupid);
    SendClientMessage(playerid, COLOR_GREEN2, nstring);
    CreatePickup(pickupid, 2, x+2,y+2,z);
    }
    }
    return 1;
    }


    pickupid hat auch gefehlt^^