Другое С/С++ Вопрос - Ответ

_=Gigant=_

Известный
144
225
Lesson number 1:

Код:
void CALLBACK cmd_show_info_player( std::string param )
{
   if ( param.empty() ) return;
   int    i = std::stoi( param );

   char buf[128];

   stRemotePlayer *pPlayer = SF->getSAMP()->getPlayers()->pRemotePlayer[ i ];

   if(!pPlayer) return;

   sprintf( buf, "Nickname - %s, Ping - %d, Score - %d, isNPC - %d, AFKState - %d",
       pPlayer->szPlayerName,
       pPlayer->iPing,
       pPlayer->iScore,
       pPlayer->iIsNPC,
       pPlayer->pPlayerData->iAFKState == 2 );

   SF->getSAMP()->getChat()->AddChatMessage( -1, buf );
};

And in Mainloop:
SF->getSAMP()->registerChatCommand( "showinfo", cmd_show_info_player );

Expample for you:
Код:
stRemotePlayer *pPlayer = SF->getSAMP()->getPlayers()->pRemotePlayer[ Informer_Target_PlayerID ];
if(!pPlayer) return;
sprintf(ctarget_ping_score, "{8cff00}Ping{FFFFFF} %d{007bff} Score{FFFFFF} %d ", pPlayer->iPing, pPlayer->iScore);

What kind of font do you use?

im using

pD3DFont_sampStuff

CD3DFont *pD3DFont_sampStuff = new CD3DFont( "Tahoma", 10, FCR_BORDER );
 

CleanLegend

Известный
Всефорумный модератор
481
939
sprintf(ctarget_ping_score, "{8cff00}Ping{FFFFFF} %d{007bff} Score{FFFFFF} %d ", g_Players>pRemotePlayer[Informer_Target_PlayerID]>iPing, g_Players->pRemotePlayer[Informer_Target_PlayerID]->iScore);

this code you see should display player ping and score, it does sometimes but not always what's wrong with this ? here you can see that player score and ping is 0 and sometimes it displays correct value idk what's wrong

sa-mp-234.png


thanks for help !
you need send update scoreboard
 
  • Нравится
Реакции: _=Gigant=_

_=Gigant=_

Известный
144
225
you need send update scoreboard

how can i do that i took a look at FYP screen info code and i included same stuff as him in that code still ping and score shows 0 here full code

C++:
void renderPlayerInfo()
{
    traceLastFunc("renderPlayerInfo()");


    if (gta_menu_active())
        return;

    if (cheat_state->_generic.cheat_panic_enabled)
        return;

    if (!g_dwSAMP_Addr || !g_SAMP || !g_Players)
        return;


    // don't run if the CGameSA doesn't exist
    if (!pGameInterface)
        return;

    // don't run if we don't exist
    if (isBadPtr_GTA_pPed(pPedSelf))
        return;

        if (g_Scoreboard->iIsEnabled)
            return;

        for (int i = 0; i < SAMP_MAX_PLAYERS; i++)
        {
            actor_info *actor = getGTAPedFromSAMPPlayerID(i);
            struct actor_info    *self = actor_info_get(ACTOR_SELF, 0);

            if (self == NULL)
                return;

            if (!actor)
                continue;

            D3DXVECTOR3 player_pos, screenposs;

            float * f_pos = &actor->base.matrix[4 * 3];
            player_pos.x = f_pos[0];
            player_pos.y = f_pos[1];
            player_pos.z = f_pos[2];
            CalcScreenCoors(&player_pos, &screenposs);

            char pos[256], ping[256], hparmw[256], pnameid[256], skin[256];

                if (screenposs.z < 1.f)
                    continue;

                if (g_Players->iIsListed[i] != 1)
                    continue;

                stRemotePlayer *pPlayer = g_SAMP->pPools->pPlayer->pRemotePlayer[i];

                const char * playerName = getPlayerName(i);

                if (Informer)
                {

                    _snprintf_s(pnameid, sizeof(pnameid) - 1, "{C235DD}Player{FFFFFF} %s <%d>{00FF00} Distance{FFFFFF} %.0f m", playerName, i, GetDistance(D3DXVECTOR3(player_pos.x, player_pos.y, player_pos.z)));
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y - 38, COLOR_WHITE(255), pnameid);

                    _snprintf_s(hparmw, sizeof(hparmw) - 1, "{FF0F0F}Health{FFFFFF} %0.0f Armour %0.0f{FFA00F} Weapon{FFFFFF} %u", g_Players->pRemotePlayer[i]->pPlayerData->fActorHealth, g_Players->pRemotePlayer[i]->pPlayerData->fActorArmor, g_Players->pRemotePlayer[i]->pPlayerData->onFootData.byteCurrentWeapon);//, g_Players->pRemotePlayer[i]->szPlayerName, i);
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y - 26, COLOR_WHITE(255), hparmw);

                    _snprintf_s(ping, sizeof(ping) - 1, "{F0FF0F}Skin{FFFFFF} %d{00FF00} Ping{FFFFFF} %d Score %d", actor->base.model_alt_id, pPlayer->iPing, pPlayer->iScore);
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y - 14, COLOR_WHITE(255), ping);

                    _snprintf_s(pos, sizeof(pos) - 1, "Pos X %0.02f Y %0.02f Z %0.02f", player_pos.x, player_pos.y, player_pos.z);//, g_Players->pRemotePlayer[i]->szPlayerName, i);
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y, COLOR_WHITE(255), pos);

                }
    }
}
 

ALF

Известный
Проверенный
320
539
how can i do that i took a look at FYP screen info code and i included same stuff as him in that code still ping and score shows 0 here full code

C++:
void renderPlayerInfo()
{
    traceLastFunc("renderPlayerInfo()");


    if (gta_menu_active())
        return;

    if (cheat_state->_generic.cheat_panic_enabled)
        return;

    if (!g_dwSAMP_Addr || !g_SAMP || !g_Players)
        return;


    // don't run if the CGameSA doesn't exist
    if (!pGameInterface)
        return;

    // don't run if we don't exist
    if (isBadPtr_GTA_pPed(pPedSelf))
        return;

        if (g_Scoreboard->iIsEnabled)
            return;

        for (int i = 0; i < SAMP_MAX_PLAYERS; i++)
        {
            actor_info *actor = getGTAPedFromSAMPPlayerID(i);
            struct actor_info    *self = actor_info_get(ACTOR_SELF, 0);

            if (self == NULL)
                return;

            if (!actor)
                continue;

            D3DXVECTOR3 player_pos, screenposs;

            float * f_pos = &actor->base.matrix[4 * 3];
            player_pos.x = f_pos[0];
            player_pos.y = f_pos[1];
            player_pos.z = f_pos[2];
            CalcScreenCoors(&player_pos, &screenposs);

            char pos[256], ping[256], hparmw[256], pnameid[256], skin[256];

                if (screenposs.z < 1.f)
                    continue;

                if (g_Players->iIsListed[i] != 1)
                    continue;

                stRemotePlayer *pPlayer = g_SAMP->pPools->pPlayer->pRemotePlayer[i];

                const char * playerName = getPlayerName(i);

                if (Informer)
                {

                    _snprintf_s(pnameid, sizeof(pnameid) - 1, "{C235DD}Player{FFFFFF} %s <%d>{00FF00} Distance{FFFFFF} %.0f m", playerName, i, GetDistance(D3DXVECTOR3(player_pos.x, player_pos.y, player_pos.z)));
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y - 38, COLOR_WHITE(255), pnameid);

                    _snprintf_s(hparmw, sizeof(hparmw) - 1, "{FF0F0F}Health{FFFFFF} %0.0f Armour %0.0f{FFA00F} Weapon{FFFFFF} %u", g_Players->pRemotePlayer[i]->pPlayerData->fActorHealth, g_Players->pRemotePlayer[i]->pPlayerData->fActorArmor, g_Players->pRemotePlayer[i]->pPlayerData->onFootData.byteCurrentWeapon);//, g_Players->pRemotePlayer[i]->szPlayerName, i);
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y - 26, COLOR_WHITE(255), hparmw);

                    _snprintf_s(ping, sizeof(ping) - 1, "{F0FF0F}Skin{FFFFFF} %d{00FF00} Ping{FFFFFF} %d Score %d", actor->base.model_alt_id, pPlayer->iPing, pPlayer->iScore);
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y - 14, COLOR_WHITE(255), ping);

                    _snprintf_s(pos, sizeof(pos) - 1, "Pos X %0.02f Y %0.02f Z %0.02f", player_pos.x, player_pos.y, player_pos.z);//, g_Players->pRemotePlayer[i]->szPlayerName, i);
                    pD3DFont_sampStuff->PrintShadow(screenposs.x, screenposs.y, COLOR_WHITE(255), pos);

                }
    }
}
BlastHackNet/mod_s0beit_sa(https://github.com/BlastHackNet/mod_s0beit_sa/blob/master/src/samp.cpp#L841)
 
  • Нравится
Реакции: _=Gigant=_

_=Gigant=_

Известный
144
225
why this crashing i wanted to automatically exit car when car is about to explode

C++:
         vehicle_info* my_veh = vehicle_info_get(VEHICLE_SELF, NULL);
           
            float *coord = new float[3];
            coord[0] = pPedSelf->GetPosition()->fX;
            coord[1] = pPedSelf->GetPosition()->fY - 2.0f;
            coord[2] = pPedSelf->GetPosition()->fZ;
         
            if (my_veh->hitpoints == 200)  // if vehicle hp is 200 then exit from car
            {

            GTAfunc_RemoveActorFromCarAndPutAt(coord);
        }

thanks for help
 

Dark_Knight

Me, me and me.
Друг
4,083
2,110
C++:
vehicle_info* my_veh = vehicle_info_get(VEHICLE_SELF, NULL);
if(my_veh){
    float coord[3];
    coord[0] = pPedSelf->GetPosition()->fX;
    coord[1] = pPedSelf->GetPosition()->fY - 2.0f;
    coord[2] = pPedSelf->GetPosition()->fZ;
    if (my_veh->hitpoints == 200)  // if vehicle hp is 200 then exit from car
    {
        GTAfunc_RemoveActorFromCarAndPutAt(&coord);
    }
}
 
  • Нравится
Реакции: _=Gigant=_

Revalto

Известный
532
225
Так то оно так, но лучше такую проверку:
Код:
if (my_veh->hitpoints <= 200)
Ведь у нас не всегда именно 200 хп будет)
 
  • Нравится
Реакции: _=Gigant=_

_=Gigant=_

Известный
144
225
how to get player current weapon name, here what i did


Код:
const struct weapon_entry    *weapon = weapon_list;

            sprintf(ctarget_wep, "{31f8ff}Weapon{FFFFFF} %s{FFFFFF} %u", gta_weapon_get_by_name(weapon->name), g_Players->pRemotePlayer[Target_PlayerID]->pPlayerData->onFootData.byteCurrentWeapon);

const struct weapon_entry    weapon_list[] =
{
    { 0, 0, -1, "Fist" },
    { 1, 0, 331, "Brass Knuckles" },
    { 2, 1, 333, "Golf Club" },
    { 3, 1, 334, "Nitestick" },
    { 4, 1, 335, "Knife" },
    { 5, 1, 336, "Baseball Bat" },
    { 6, 1, 337, "Shovel" },
    { 7, 1, 338, "Pool Cue" },
    { 8, 1, 339, "Katana" },
    { 9, 1, 341, "Chainsaw" },
    { 22, 2, 346, "Pistol" },
    { 23, 2, 347, "Silenced Pistol" },
    { 24, 2, 348, "Desert Eagle" },
    { 25, 3, 349, "Shotgun" },
    { 26, 3, 350, "Sawn-Off Shotgun" },
    { 27, 3, 351, "SPAZ12" },
    { 28, 4, 352, "Micro UZI" },
    { 29, 4, 353, "MP5" },
    { 32, 4, 372, "Tech9" },
    { 30, 5, 355, "AK47" },
    { 31, 5, 356, "M4" },
    { 33, 6, 357, "Country Rifle" },
    { 34, 6, 358, "Sniper Rifle" },
    { 35, 7, 359, "Rocket Launcher" },
    { 36, 7, 360, "Heat Seeking RPG" },
    { 37, 7, 361, "Flame Thrower" },
    { 38, 7, 362, "Minigun" },
    { 16, 8, 342, "Grenade" },
    { 17, 8, 343, "Teargas" },
    { 18, 8, 344, "Molotov Cocktail" },
    { 39, 8, 363, "Remote Explosives" },
    { 41, 9, 365, "Spray Can" },
    { 42, 9, 366, "Fire Extinguisher" },
    { 43, 9, 367, "Camera" },
    { 10, 10, 321, "Dildo 1" },
    { 11, 10, 322, "Dildo 2" },
    { 12, 10, 323, "Vibe 1" },
    { 13, 10, 324, "Vibe 2" },
    { 14, 10, 325, "Flowers" },
    { 15, 10, 326, "Cane" },
    { 44, 11, 368, "NV Goggles" },
    { 45, 11, 369, "IR Goggles" },
    { 46, 11, 371, "Parachute" },
    { 40, 12, 364, "Detonator" },
    { -1, -1, -1, NULL }
};

but this shows
Screenshot_2.jpg


thanks for help !
 

Babayka2016

Известный
51
2
Приветствую. Столкнулся с такой проблемой:

К примеру, есть координаты множества чекпоинтов, они расположены хаотично.

Есть координаты машины и поворот персонажа в ней:

Поворот персонажа:

public float Get_Rotation() {
int base_address = mem.ReadInt(0xB6F5F0);
float angel = mem.ReadFloat(base_address + 0x558);

return angel * 6;
}

Координаты машины:

public float[] Get_Car_Coord()
{
float[] Position = new float[2];
int car_offset = mem.ReadInt(0xBA18FC);
int offset_to_matrix_car = mem.ReadInt(car_offset + 0x14);
Position[0] = mem.ReadFloat(offset_to_matrix_car + 0x30);
Position[1] = mem.ReadFloat(offset_to_matrix_car + 0x34);
return Position;
}

Как мне сделать так, чтобы она могла проехать по маршруту чекпоинтов?

Мне нужно как-то взять тот угол, на который она должна повернуться.

Типа... Есть координаты чекпоинта:

x: 1141.513916
y: -1162.998169

И координаты машины:


x: 1162.112061

y: -1199.149658

Как сделать так, чтобы она туда приехала? Как вычислить тот угол, на который она должна повернуть?

Вообще, видел, что реализуют через функцию lua - getHeadingFromVector2d.

Как она вообще устроена? Как её перевести на другой язык, к примеру?

P.S НУЖНО БЕЗ SAMPFUNCS и SAMP LUA.

Заранее спасибо)
 
Последнее редактирование:

ШPEK

Известный
1,474
526
Как исправить?
Код:
||=== Build: Debug Win32 in SFPlugin (compiler: GNU GCC Compiler) ===|
C:\Documents and Settings\Admin\Рабочий стол\Новая папка\SFPlugin\main.cpp|6|fatal error: SAMPFUNCS_API.h: No such file or directory|
||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
C++:
#include <windows.h>
#include <string>
#include <assert.h>
#include <process.h>

#include "SAMPFUNCS_API.h"
#include "game_api\game_api.h"

SAMPFUNCS *SF = new SAMPFUNCS();

void CALLBACK mainloop()
{
    static bool init = false;
    if (!init)
    {
        if (GAME == nullptr)
            return;
        if (GAME->GetSystemState() != eSystemState::GS_PLAYING_GAME)
            return;
        if (!SF->getSAMP()->IsInitialized())
            return;
        SF->getSAMP()->getChat()->AddChatMessage( D3DCOLOR_XRGB( 0, 0xAA, 0 ), "SAMPFUNCS Plugin loaded." );

        init = true;
    }
}

BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReasonForCall, LPVOID lpReserved)
{
    switch (dwReasonForCall)
    {
        case DLL_PROCESS_ATTACH:
            SF->initPlugin(mainloop, hModule);
            break;
        case DLL_THREAD_ATTACH:
        case DLL_THREAD_DETACH:
        case DLL_PROCESS_DETACH:
            break;
    }
    return TRUE;
}
Файл SAMPFUNCS_API.h существует
 

SR_team

like pancake
BH Team
4,815
6,515
Как исправить?
Код:
||=== Build: Debug Win32 in SFPlugin (compiler: GNU GCC Compiler) ===|
C:\Documents and Settings\Admin\Рабочий стол\Новая папка\SFPlugin\main.cpp|6|fatal error: SAMPFUNCS_API.h: No such file or directory|
||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
C++:
#include <windows.h>
#include <string>
#include <assert.h>
#include <process.h>

#include "SAMPFUNCS_API.h"
#include "game_api\game_api.h"

SAMPFUNCS *SF = new SAMPFUNCS();

void CALLBACK mainloop()
{
    static bool init = false;
    if (!init)
    {
        if (GAME == nullptr)
            return;
        if (GAME->GetSystemState() != eSystemState::GS_PLAYING_GAME)
            return;
        if (!SF->getSAMP()->IsInitialized())
            return;
        SF->getSAMP()->getChat()->AddChatMessage( D3DCOLOR_XRGB( 0, 0xAA, 0 ), "SAMPFUNCS Plugin loaded." );

        init = true;
    }
}

BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReasonForCall, LPVOID lpReserved)
{
    switch (dwReasonForCall)
    {
        case DLL_PROCESS_ATTACH:
            SF->initPlugin(mainloop, hModule);
            break;
        case DLL_THREAD_ATTACH:
        case DLL_THREAD_DETACH:
        case DLL_PROCESS_DETACH:
            break;
    }
    return TRUE;
}
Файл SAMPFUNCS_API.h существует
В sln есть виртуальные директории или типа того. Что бы GCC подсосал файл по не верному пути надо ему об этом сказать через `-I`. qmake и qbs делают это автоматически. Но лучше исправить путь, ведь `SAMPFUNCS_API.h` и `main.cpp` лежат не в одной папке.