OnePlayer Command Text

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
  • Also bei mir kommt das Problem:
    C:\Program Files\Rockstar Games\GTA SA SAMP\gamemodes\monster.pwn(111) : error 035: argument type mismatch (argument 2)
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase




    Mein Codeschnipsel:
    //---------------------------------------------------------


    public OnPlayerCommandText(playerid, cmdtext[])
    {
    if (strcmp("/help", cmdtext, true, 10) == 0)
    {
    SendClientMessage( COLOR_YELLOW, "Fragen nach hilfe");
    return 1;
    }
    return 0;
    }
    //---------------------------------------------------------



    Was is da falsch?
    Edit: habe#pragma tabsize 0

  • public OnPlayerCommandText(playerid, cmdtext[])
    {
    if(strcmp(cmdtext,"/help",true)==0){
    SendClientMessage(playerid, COLOR_YELLOW, "Fragen nach hilfe");
    return 1;
    }
    return 0;
    }

  • Danke Klappt ;)
    EdiT:
    Hab nochma ne frage wie kann man machen das die nich so wie frauen rennen? 8|

    Einmal editiert, zuletzt von KinG | Philip ()

  • C:\Program Files\Rockstar Games\GTA SA SAMP\gamemodes\monster.pwn(40) : warning 202: number of arguments does not match definition
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
    public OnGameModeInit()public OnGameModeInit()
    {
    new Float:monsterX = 414.9143;
    new Float:boatX = 260.0439;
    new Float:bikeX = 393.8199;
    new id;
    new count;


    UsePlayerPedAnims(true);
    SetGameModeText("Monster Test Freeroam");