/stats System [ Kills, Deaths, Ratio ]

  • Guten Tag liebe Community,


    ich suche für meinen kleinen Deathmatch Server ein /stats System..
    Es sollte in einen Dialog Angezeigt werden btw. unten in einem "Text Draw"..
    Es sollten folgende Sachen dabei gespeichert werden..


    Ratio - Kills - Deaths
    Wenn diese Sachen dadrin sind, würde ich mich echt freuen!


    Liebe Grüße
    TimPhillip

  • xD für sowas gibt mann kein geld aus.


    gib mir mal deine abfrage zum tode kill , und ratio (was das eig?)


    oder deine PVarInt Namen ;D


    Dann editier ich den beitrag hier

  • Wenn du bis morgen wartest hast du es ;)


    edit:


    Hier ein kleiner Ansatz für dich


    if (strcmp("/statss", cmdtext, true, 10) == 0)
    {
    new string[64],kills,deaths,Float:ratio;
    kills = GetPVarInt(playerid,"Kills");
    deaths = GetPVarInt(playerid,"Deaths");
    ratio = (kills/deaths);
    format(string,sizeof(string),"Kills: %i\nDeaths: %i\nRatio: %f",kills,deaths,ratio);
    ShowPlayerDialog(playerid,DIALOG_STATS,DIALOG_STYLE_MSGBOX,"Stats",string,"Ok","");
    return 1;
    }

    Einmal editiert, zuletzt von Blitz100 ()

  • E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : error 029: invalid expression, assumed zero
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : warning 215: expression has no effect
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : warning 215: expression has no effect
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : warning 215: expression has no effect
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : warning 215: expression has no effect
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : warning 215: expression has no effect
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : error 001: expected token: ";", but found ")"
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : error 029: invalid expression, assumed zero
    E:\Dokumente und Einstellungen\Systemadministrator\Desktop\Pawno\gamemodes\Selfmade100.pwn(99) : 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.


    if (strcmp("/stats", cmdtext, true, 10) == 0)
    {
    new string[64],kills,deaths,Float:ratio;
    kills = GetPVarInt(playerid,"Kills");
    deaths = GetPVarInt(playerid,"Deaths");
    ratio = (kills/deaths);
    format(string,sizeof(string),"Kills: %i\nDeaths: %i\nRatio: %f",kills,deaths,ratio);
    ShowPlayerDialog(playerid,DIALOG_STATS,DIALOG_STYLE_MSGBOX,"Stats",string,"Ok","");
    return 1;
    }