- L 11/15/2021 - 12:13:08: [ReAPI] get_member_s: 'm_iTeam' has no refs to the base class of an entity 'worldspawn'
- L 11/15/2021 - 12:13:08: [AMXX] Run time error 10 (plugin "ze_coins_system.amxx") (native "get_member_s") - debug not enabled!
Version 1.7
- Raheem
- Mod Developer
- Posts: 2210
- Joined: 5 Years Ago
- Has thanked: 55 times
- Been thanked: 169 times
- Age: 24
- Contact:
Re: Version 1.7
@Z0uha1r_LK, I'm giving u access on github to commit these optimizations, OK?
[ Post made via Android ]

He who fails to plan is planning to fail
- Z0uha1r_LK
- Moderator
- Posts: 385
- Joined: 3 Years Ago
- Location: Morocco
- Has thanked: 121 times
- Been thanked: 41 times
- Age: 20
- Contact:
- Raheem
- Mod Developer
- Posts: 2210
- Joined: 5 Years Ago
- Has thanked: 55 times
- Been thanked: 169 times
- Age: 24
- Contact:
I findZ0uha1r_LK wrote: ↑9 Months AgoSwitch Fake Meta/Ham Sandwich API to ReAPI
Ex:in reapi
if (!pev_valid(iEnt)) return;
if (!is_entity(iEnt)) return;
pev_valid()
is better in security than is_enitity()
from my old tests. And no problem to switch to is_entity. Engine sometimes thinks that the entity is still there while it has been removed. So the problem generally will be from the engine and how it updates the status of entities. But for something in my mind IDK what I prefer using pev_valid.This is a good suggestion, it will add a new feature and it is the control in the final message type (HUD, DHUD, chat_center). At the same time, it will make the code more human-readable.Z0uha1r_LK wrote: ↑9 Months AgoTry delete repeats "rg_round_end" in ze_core, Use it:
ze_message_win (1=Text/2=HUD/3=DHUD)
#include <amxmodx> #include <reapi> Finish_Round({255, 0, 0}, "ESCAPE_SUCCESS", WINSTATUS_CTS, 3) public Finish_Round(iColor[3], const szMessage[], WinStatus:iWin, iPrintType) { // Finish a round. rg_round_end(5.0, iWin, ROUND_NONE, ""); // Show HUD switch (iPrintType) { case 1: engclient_print(0, engprint_center, "%L", LANG_PLAYER, szMessage) case 2: { set_hudmessage(iColor[0], iColor[1], iColor[2], -1.0, 0.3, 1, 5.0, 5.0, 0.0, 0.0) show_hudmessage(0, "%L", LANG_PLAYER, szMessage) } case 3: { set_dhudmessage(iColor[0], iColor[1], iColor[2], -1.0, 0.3, 1, 5.0, 5.0, 0.0, 0.0) show_dhudmessage(0, "%L", LANG_PLAYER, szMessage) } } }
I wonder how this can be useful, but in past, I saw some ZP servers that had no ammo-packs bank and the APs are only for one map. This was a bad idea from my point of view, however, this can be an option and everyone is free to use it or not. So generally, no problem to add it.
Good idea to make the code more organized.Z0uha1r_LK wrote: ↑9 Months AgoAdd this in zombie_escape.inc
#define ZE_SETTING_RESOURCES "zombie_escape.ini"
This suggestion is somehow not correct. Because we are in a new round and we directly terminated any sound and sent the ready sound. So there is no chance that the ready sound is already on to check it before sending it again.Z0uha1r_LK wrote: ↑8 Months AgoFix this in ze_resources.amxx
You forgot this
// Play Ready sound only if game started public ze_game_started() { // Play Ready Sound For All Players new szSound[SOUND_MAX_LENGTH] ArrayGetString(g_szReadySound, random_num(0, ArraySize(g_szReadySound) - 1), szSound, charsmax(szSound)) for(new id = 1; id <= g_iMaxPlayers; id++) { if(!is_user_connected(id) && !g_bReadySound[id]) continue PlaySound(id, szSound) } }!g_bReadySound[id]
:
if(!is_user_connected(id) && !g_bReadySound[id])
I definitely agree, you can do this for more optimization.Z0uha1r_LK wrote: ↑7 Months AgoWe need optimize codes and switch more natives FakeMeta & Ham Sandwich to ReAPI.
You got full permission to optimize it

Just make sure first that the id you are getting its member is connected, and such an error will not be there. Anyway, this error is not in our core or other main Mod plugins in any way.Z0uha1r_LK wrote: ↑7 Months AgoWe need fix this error in v1.7:
Reason: When use last version of the ReAPI:
Solution: viewtopic.php?f=22&p=12179#p12179
or
changeset_member
andget_member
---->set_member_s
andget_member_s
I'm trying to understand this, assuming the victim is a zombie you will skip the code. Assuming the attacker is human you will skip the code. If both are satisfied you also will skip the code. I don't know what it means. We need to ensure that they are not in the same team. Please explain your code.Z0uha1r_LK wrote: ↑7 Months AgoPlugin: ze_core.amxxNow, It's better:
public Fw_TraceAttack_Pre(iVictim, iAttacker, Float:flDamage, Float:flDirection[3], iTracehandle, bitsDamageType) { if (iVictim == iAttacker || !is_user_connected(iVictim) || !is_user_connected(iAttacker)) return HC_CONTINUE // Attacker and Victim is in same teams? Skip code blew if (get_member(iAttacker, m_iTeam) == get_member(iVictim, m_iTeam)) return HC_CONTINUE // ...
public Fw_TraceAttack_Pre(iVictim, iAttacker, Float:flDamage, Float:flDirection[3], iTracehandle, bitsDamageType) { // Invalid player or Attacker is himself. if (iVictim == iAttacker || !is_user_connected(iVictim) || !is_user_connected(iAttacker)) return HC_CONTINUE; // Attacker and Victim is in same teams? Skip code blew if (g_bIsZombie[iVictim] || !g_bIsZombie[iAttacker]) return HC_CONTINUE; // ... }
Please test it, and state your optimizations.Z0uha1r_LK wrote: ↑7 Months AgoI tried optimize this and check from all codes, I haven't tried it:
zombie_escape_stocks.inc
Updated: 28/03/2022
State what you optimized, and test it.Z0uha1r_LK wrote: ↑6 Months AgoI optimize code using ReAPI
ze_block_events_messages.sma
Required: Last version of ReAPI
Why not use the ReAPI function direct, explain your point of view to create a function for it.Z0uha1r_LK wrote: ↑4 Months AgoAdd this feature in resource.amxx, to set player model usingze_set_user_model
#include <zombie_escape> // Defintions. #define MAX_MODEL_LENGTH 64 // Variables. new bool:g_bHumanCustomModel[MAX_CLIENTS+1] new bool:g_bZombieCustomModel[MAX_CLIENTS+1] new g_szHumanCustomModel[MAX_CLIENTS+1][MAX_MODEL_LENGTH] new g_szZombieCustomModel[MAX_CLIENTS+1][MAX_MODEL_LENGTH] // Forward called after server activation. public plugin_init() { // Load plugin. register_plugin("[ZE] Resource", "0.1", "Escapers-Zone.NET") } // Forward allows registering natives. public plugin_natives() { register_native("ze_set_user_model", "_native_set_user_model", 0) register_native("ze_reset_user_model", "_native_reset_user_model", 0) } // Forward called when set player Human (when cure). public ze_user_humanized(id) { // Human Custom Model is enabled? if (g_bHumanCustomModel[id]) { // Set player new Human Model. rg_set_user_model(id, g_szHumanCustomModel[id]) } } // Forward called after infect Human. public ze_user_infected(iVictim, iAttacker) { // Zombie Custom Model is enabled? if (g_bZombieCustomModel[id]) { // Set player new Zombie Model. rg_set_user_model(id, g_szZombieCustomModel[id]) } } public _native_set_user_model(id, szModel[], iTeam) { // Player not found? if (!is_user_connected(id)) { log_error(AMX_ERR_NATIVE, "[ZE] Invalid Player (%d)", id) return 0; // Return false. } // Set player Human/Zombie Model. switch (iTeam) { case ZE_TEAM_HUMAN: { g_bHumanCustomModel[id] = true copy(g_szHumanCustomModel[id], charsmax(g_szHumanCustomModel[]), szModel) } case ZE_TEAM_ZOMBIE: { g_bZombieCustomModel[id] = true copy(g_szZombieCustomModel[id], charsmax(g_szZombieCustomModel[]), szModel) } default: { log_error(AMX_ERR_NATIVE, "[ZE] Invalid Team (%d)", iTeam) return 0; // Return false. } } // Return true. return 1; } public _native_reset_user_model(id, iTeam) { // Player not found? if (!is_user_connected(id)) { log_error(AMX_ERR_NATIVE, "[ZE] Invalid Player (%d)", id) return 0; // Return false. } // Set player Human/Zombie Model. switch (iTeam) { case ZE_TEAM_HUMAN: { g_bHumanCustomModel[id] = false g_szHumanCustomModel[id] = '^0' } case ZE_TEAM_ZOMBIE: { g_bZombieCustomModel[id] = false g_szZombieCustomModel[id] = '^0' } default: { log_error(AMX_ERR_NATIVE, "[ZE] Invalid Team (%d)", iTeam) return 0; // Return false. } } // Return true. return 1; }
We can suppress the infection inZ0uha1r_LK wrote: ↑2 Months AgoAdd new nativeze_infection_status(bool:bStatus)
to enable or disabled infection.
Do this in ze_core
#include <zombie_escape> // Variables. new bool:g_bStatusInfection // Hook Chains Variable. new HookChain:g_hcTraceAttack // Forward allows registering natives. public plugin_natives() { register_native("ze_infection_status", "_native_infection_status", 1) } // Forward called after server activation. public plugin_init() { // ... // Hook Chains. g_hcTraceAttack = RegisterHookChain(RG_CBasePlayer_TraceAttack, "Fw_TraceAttack_Pre", 0) // Static Values. g_bStatusInfection = true } public _native_infection_status(bool:bStatus) { if (!bStatus) { g_bStatusInfection = false DisableHookChain(g_hcTraceAttack) } else { g_bStatusInfection = true EnableHookChain(g_hcTraceAttack) } }
ze_game_started_pre()
forward, however not a bad idea.Test it and ensure this is working without issues.Z0uha1r_LK wrote: ↑2 Months AgoI see this is better method to chosen player in previous round.
Change this:By this:
// Dynamic Arrays new Array:g_aChosenPlayersNo need to check, If smart random is Enabled, can Owner enable it in any time, and change dyanmic array to Triepublic
// Trie Variables. new Trie:g_tChosenPlayersThis better:
public DelaySmartRandom() { // Create our Trie to store SteamIDs in g_tChosenPlayers = TrieCreate() }
Choose_Zombies() { new szAuthID[35], iAliveCount, iReqZombies, iZombies, id // Get total alive players and required players iAliveCount = GetAllAlivePlayersNum() iReqZombies = RequiredZombies() // Get integer value from cvar. new iSmartRandom = get_pcvar_num(g_pCvarSmartRandom) // Get float value (first zombie health) from cvar new Float:flFirstZombieHealth = get_pcvar_float(g_pCvarFirstZombiesHealth) // Loop till we find requires players while (iZombies < iReqZombies) { // Get random player index. id = GetRandomAlive(random_num(1, iAliveCount)) // Get auth (SteamID) of player. get_user_authid(id, szAuthID, charsmax(szAuthID)) // Player is died or is already Zombie? if (!is_user_alive(id) || g_bIsZombie[id]) continue; // Check if CVAR enabled and if player in the Trie, it means he chosen previous round so skip him this round if (iSmartRandom && TrieKeyExists(g_tChosenPlayers, szAuthID)) continue; // Infect player. Set_User_Zombie(id) // Set zombie health. set_entvar(id, var_health, flFirstZombieHealth) // Set zombie frozen flag. g_bIsZombieFrozen[id] = true set_entvar(id, var_maxspeed, 1.0) // New Zombie iZombies++ } if (iZombies > 0) { g_bZombieFreezeTime = true set_task(0.1, "Zombies_Speed", ZOMBIES_SPEED, _, _, "b") // Better than PreThink ExecuteForward(g_iForwards[FORWARD_ZOMBIE_APPEAR], g_iFwReturn) } // Check from Smart Random is enable? if (iSmartRandom) { // Clear the Trie first TrieClear(g_tChosenPlayers) new szAuthID[35], id // Add steamid of chosen zombies, so we don't choose them next round again (using steamid means it support reconnect) for (id = 1; id <= g_iMaxClients; id++) { // Player not found or is a Zombie? if(!is_user_connected(id) || !g_bIsZombie[id]) continue // Get authid (SteamID) of player. get_user_authid(id, szAuthID, charsmax(szAuthID)) // Stors SteamIDs of chosen players in Trie. TrieSetCell(g_tChosenPlayers, szAuthID, 0) } } // 2 is Hardcoded Value, It's Fix for the countdown to work correctly g_iCountDown = get_pcvar_num(g_pCvarZombieReleaseTime) - 2 // Show release time. set_task(1.0, "ReleaseZombie_CountDown", TASK_COUNTDOWN2, _, _, "b") }
OK, no doubt that fakemeta is better than cstrike.Z0uha1r_LK wrote: ↑2 Months Agoin cs_weap_models_api
change this:to this:
// cstrike cs_get_weapon_id(entity_id)
#define EXTRAOFFSET_WEAPONS 4 #define OFFSET_WEAPONTYPE 43 // fakemeta. get_pdata_int(entity_id, OFFSET_WEAPONTYPE, EXTRAOFFSET_WEAPONS)
Finally to say, you got full access to github. You can now commit every change you do, and make sure to fully describe your commit and to commit only edits you tested and found it 100% running. I'm sorry for late reply, and great job bro that you are trying to continue the project



He who fails to plan is planning to fail
- Raheem
- Mod Developer
- Posts: 2210
- Joined: 5 Years Ago
- Has thanked: 55 times
- Been thanked: 169 times
- Age: 24
- Contact:
If someone is interested to share in the development of the next version, here is the telegram group: https://t.me/escapers_zone
- These users thanked the author Raheem for the post:
- Z0uha1r_LK (3 Weeks Ago)
He who fails to plan is planning to fail
Create an account or sign in to join the discussion
You need to be a member in order to post a reply
Create an account
Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute
Sign in
Who is online
Users browsing this forum: No registered users and 1 guest