Jump to content

RazvanYT

Membru
  • Posts

    3
  • Joined

  • Last visited

Posts posted by RazvanYT

  1. Cand incepi o comanda de exemplu cu zcmd trebuie sa pui

    CMD:comandata(playerid, params[])

    { //deasta ai eroarea aia

              functia care vr sa o faca

         return 1; //asta e pentru a nu da eroare in joc

    } //deasta ai eroarea aia

  2. #include                <YSI\y_commands>
    #include                <YSI\y_master>

    #include                 <YSI\y_timers>

    YCMD:staff(playerid, params[], help) {

     

        if(PlayerInfo[playerid][pAdmin] < 1) return 1;    
        ShowPlayerDialog(playerid, DIALOG_STAFF, DIALOG_STYLE_LIST, "Staff", "Admins\nHelpers", "Ok", "Close");
        return 1;        
    }

    if(dialogid == DIALOG_STAFF) 
        {
            if(!response) return 1;
            new szQuery[1024], szResult[1024], szDialog[1024], szDialog2[4000], Cache: result;
            new szPlayers, szPlayersT;
            new szName[180], szAdmin, szLastOn[180], x, y, szTitle[180], warns, userID;
            switch(listitem) {
                case 0: {
                    format(szQuery, sizeof(szQuery), "SELECT * FROM `users` WHERE `Admin`>'0' ORDER BY `users`.`Admin` ASC LIMIT 50");
                    result = mysql_query(SQL, szQuery);            
                    strcat(szDialog2, "Name\tStatus\tRaport\tWarns\n");
                    for(new i, j = cache_get_row_count (); i < j; i++)
                    {
                        cache_get_field_content(i, "name", szResult); format(szName, 256, szResult);
                        cache_get_field_content(i, "Admin", szResult); szAdmin = strval(szResult);
                        cache_get_field_content(i, "lastOn", szResult); format(szLastOn, 256, "Offline (%s)", szResult);    
                        cache_get_field_content(i, "HelpedPlayers", szResult); szPlayers = strval(szResult);
                        cache_get_field_content(i, "HelpedPlayersToday", szResult); szPlayersT = strval(szResult);
                        cache_get_field_content(i, "AW", szResult); warns = strval(szResult);
                        userID = GetPlayerID( szName );
                        if(IsPlayerConnected(userID)) format(szLastOn, 256, "Online");
                        if(!IsPlayerConnected(userID)) format(szLastOn, 256, "Offline");
                        
                        x++;
                        format(szDialog, sizeof(szDialog), "(%d) %s\t%s\t%d on this week / %d total\t%d/3\n", szAdmin, szName, szLastOn, szPlayersT, szPlayers, warns);
                        strcat(szDialog2, szDialog);            
                    }
                    cache_delete(result);
                    format(szTitle, sizeof(szTitle), "{FFEE00}Admins (%d/%d)", GetStaffOnline(0), x);
                }
                case 1: {
                    format(szQuery, sizeof(szQuery), "SELECT * FROM `users` WHERE `Helper`>'0' ORDER BY `users`.`Helper` ASC LIMIT 50");
                    result = mysql_query(SQL, szQuery);                
                    strcat(szDialog2, "Name\tStatus\tRaport\tWarns\n");
                    for(new i, j = cache_get_row_count (); i < j; i++) {
                        cache_get_field_content(i, "name", szResult); format(szName, 256, szResult);
                        cache_get_field_content(i, "Helper", szResult); szAdmin = strval(szResult);
                        cache_get_field_content(i, "lastOn", szResult); format(szLastOn, 256, "Offline (%s)", szResult);    
                        cache_get_field_content(i, "HelpedPlayers", szResult); szPlayers = strval(szResult);
                        cache_get_field_content(i, "HelpedPlayersToday", szResult); szPlayersT = strval(szResult);
                        cache_get_field_content(i, "HW", szResult); warns = strval(szResult);
                        
                        userID = GetPlayerID( szName );
                        if(IsPlayerConnected(userID)) format(szLastOn, 256, "Online");
                        if(!IsPlayerConnected(userID)) format(szLastOn, 256, "Offline");
                        y++;
                        format(szDialog, sizeof(szDialog), "(%d) %s\t%s\t%d today / %d total\t%d/3\n", szAdmin, szName, szLastOn, szPlayersT, szPlayers, warns);
                        strcat(szDialog2, szDialog);        
                    }
                    cache_delete(result);
                    format(szTitle, sizeof(szTitle), "{FFEE00}Helpers (%d/%d)", GetStaffOnline(1), y);
                }
            }
            ShowPlayerDialog(playerid, DIALOG_STAFF+1, DIALOG_STYLE_TABLIST_HEADERS, szTitle, szDialog2, "Ok", "Back");
        }

    • Like 1
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.