- 0
-
Activity
-
34
-
15
Offline Message System
is that normal that i can Pn offline user that have PN block on ? and if that users log in they still have pn block on but every user can pn him he have to refresh pn block. -
17
anticheat [Protection] HackTrap Premium Anticheat service
HackTrap is being detected by many antiviruses as a Trojan. I am using Bitdefender - which is also detecting HackTrap as a Trojan. A lot of players have issues on servers that are using HackTrap's services, as their antiviruses detect Trojans in the files. I tested it and it comes from HackTrap's two .exe files. Please look into fixing it. If your anticheat software isn't actually a virus, it shouldn't be too difficult making sure it doesn't get flagged. People are paying for this service and the fact that your anticheat is getting caught as a virus is making servers lose playe -
-
127
Paid - Syreldar's Lua Services [Dungeons/Missions/Functions/Events/Fixing and/or Creating new Quests on request and more]
@Syreldar @Braxy We could solve this problem in a private discussion with both of you much faster without any troubles, but here we are. After we analyzed the evidence, seems that Braxy used two functions in some quests 1/1 made by Syreldar. Those functions were public posted by Syreldar in the community, the only thing that making a real problem in this situation, is that Braxy didn't mention the author/link of those two functions, that's not called quality for the m2dev marketplace. So, the staff's decision is that @Braxy will be restricted in the Marketplace - Service s- 2
-
-
-
2
Game Login and teleport CPU boost %13-15
@Shogun I did not test this during a normal game. Because I was afraid to use it with CPU usage. I uploaded this to a different VPS question and the result was the same. Is it normal for the CPU to increase 3% - 4% when a person enters? -
20
-
5
-
2
Average Damage Roll Probabilities
Skill Damage gets calculated before Average Damage, the latter is based on the result of the first. This is the default formula: iSkillBonus = MINMAX(-30, (int) (gauss_random(0, 5) + 0.5f), 30); if (abs(iSkillBonus) <= 20) iNormalHitBonus = -2 * iSkillBonus + abs(number(-8, 8) + number(-8, 8)) + number(1, 4); else iNormalHitBonus = -2 * iSkillBonus + number(1, 5); de facto, Max Avg Dmg should be 65% and Max Skill Dmg is 30%, but since the default formula weights in favor of skill damage because of that "+ 0.5f" it's basically impossible to get more- 2
-
-
-
-
Recently Browsing
No registered users viewing this page.
Question
dattg1337 1
Hello, guys i have a one problem when i initialize the pack files in the binary of client.
this is problem with warrior skills https://prntscr.com/vh0ipq
bool PackInitialize(const char* c_pszFolder)
{
if (_access(c_pszFolder, 0))
return true;
std::string stFolder = c_pszFolder + std::string("/");
CTextFileLoader::SetCacheMode();
CEterPackManager::Instance().SetCacheMode();
CSoundData::SetPackMode();
std::vector<std::string> packlist
{
"HERE IS MY PACK FILES",
};
for (const auto& pack : packlist)
CEterPackManager::Instance().RegisterPack((c_pszFolder + std::string("/") + pack).c_str(), "*");
CEterPackManager::Instance().RegisterRootPack((c_pszFolder + std::string("/") + std::string("root")).c_str());
return true;
}
can anyone help me please ?
Link to post
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.