Problem bei simplen Payday

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
  • Das ist mein Code für den Payday .. ich hab das Problem hab 7 Errors


    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1477) : error 017: undefined symbol "playerid"
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1478) : error 017: undefined symbol "playerid"
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1479) : error 017: undefined symbol "playerid"
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1480) : error 017: undefined symbol "playerid"
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1481) : error 017: undefined symbol "playerid"
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1482) : error 017: undefined symbol "playerid"
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1483) : error 017: undefined symbol "playerid"
    Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase



    7 Errors.


    forward minute();
    public minute()
    {
    for(new i=0; i<MAX_PLAYERS; i++)
    {
    if(!IsPlayerConnected(i))continue;
    if(sSpieler[i][sLogin] == 0)continue;
    //Spieler ist eingeloggt (on)
    SetPVarInt(i,"Paytime",GetPVarInt(i,"Paytime")+1);
    if(GetPVarInt(i,"Paytime")==60)
    {
    SetPVarInt(i,"Paytime",0);
    SendClientMessage(playerid,BLAU,"!-----PAYDAY-----!");
    SendClientMessage(playerid,WEIß,"-----------------");
    SendClientMessage(playerid,HELLBLAU,"Du erhällst 5000$!");
    SendClientMessage(playerid,WEIß,"-----------------");
    SendClientMessage(playerid,BLAU,"!-----PAYDAY-----!");
    GivePlayerMoney(playerid,5000);
    SetPlayerScore(playerid,Level+1);
    continue;
    }
    }
    return 1;
    }
    [/i]

  • SetTimer zu SetTimerEx und die anderen sachen dann so:


    forward minute(playerid);
    public minute(playerid)
    {
    for(new i=0; i<MAX_PLAYERS; i++)
    {
    if(!IsPlayerConnected(i))continue;
    if(sSpieler[i][sLogin] == 0)continue;
    //Spieler ist eingeloggt (on)
    SetPVarInt(i,"Paytime",GetPVarInt(i,"Paytime")+1);
    if(GetPVarInt(i,"Paytime")==3)
    {
    SetPVarInt(i,"Paytime",0);
    SendClientMessage(playerid,BLAU,"!-----PAYDAY-----!");
    SendClientMessage(playerid,WEIß,"-----------------");
    SendClientMessage(playerid,HELLBLAU,"Du erhällst 5000$!");
    SendClientMessage(playerid,WEIß,"-----------------");
    SendClientMessage(playerid,BLAU,"!-----PAYDAY-----!");
    GivePlayerMoney(playerid,5000);
    SetPlayerScore(playerid,Level+1);
    continue;
    }
    }
    return 1;
    }

  • Danke für die Antwort noch um die Urzeit :D



    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(265) : warning 202: number of arguments does not match definition
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1508) : warning 213: tag mismatch
    C:\Users\Jonas\Desktop\Selfmade x)\gamemodes\abac.pwn(1508) : warning 213: tag mismatch

  • forward minute(playerid);
    public minute(playerid)
    {
    for(new i=0; i<max_players; i++)
    {
    if(!IsPlayerConnected(i))continue;
    if(sSpieler[i][sLogin] == 0)continue;
    //Spieler ist eingeloggt (on)
    SetPVarInt(i,"Paytime",GetPVarInt(i,"Paytime")+1);
    if(GetPVarInt(i,"Paytime")==3)
    {
    SetPVarInt(playerid,"Paytime",0);
    SendClientMessage(playerid,BLAU,"!-----PAYDAY-----!");
    SendClientMessage(playerid,WEIß,"-----------------");
    SendClientMessage(playerid,HELLBLAU,"Du erhällst 5000$!");
    SendClientMessage(playerid,WEIß,"-----------------");
    SendClientMessage(playerid,BLAU,"!-----PAYDAY-----!");
    GivePlayerMoney(playerid,5000);
    SetPlayerScore(playerid,GetPlayerScore(playerid)+1); // ZEILE 1508 habe in meinem Enum Level stehen kann ich doch da übernehmen ?!
    continue;
    }
    }
    return 1;
    }

    Stahlbau Azubi deswegen kaum Aktiv

  • Equ:
    Ein globaler minuten timer bringt es auch, dann einfach mit ner schleife arbeiten ;)

    forward minute();
    public minute()
    {
    for(new i=0; i<MAX_PLAYERS; i++)
    {
    if(!IsPlayerConnected(i))continue;
    if(sSpieler[i][sLogin] == 0)continue;
    //Spieler ist eingeloggt (on)
    SetPVarInt(i,"Paytime",GetPVarInt(i,"Paytime")+1);
    if(GetPVarInt(i,"Paytime")==60)
    {
    SetPVarInt(i,"Paytime",0);
    SendClientMessage(i,BLAU,"!-----PAYDAY-----!");
    SendClientMessage(i,WEIß,"-----------------");
    SendClientMessage(i,HELLBLAU,"Du erhällst 5000$!");
    SendClientMessage(i,WEIß,"-----------------");
    SendClientMessage(i,BLAU,"!-----PAYDAY-----!");
    GivePlayerMoney(i,5000);
    SetPlayerScore(i,Level+1);
    }
    }
    return 1;
    }