Jump to content

Razor88

Inactive Member
  • Posts

    9
  • Joined

  • Last visited

  • Feedback

    0%

About Razor88

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Razor88's Achievements

Rookie

Rookie (2/16)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. i dont understand why all this code for nothing … we need just 3 lines Char_skill.cpp search: if (IS_SET(m_pkSk->dwFlag, SKILL_FLAG_CRUSH | SKILL_FLAG_CRUSH_LONG) && !IS_SET(pkChrVictim->GetAIFlag(), AIFLAG_NOMOVE)) { float fCrushSlidingLength = 200; if (m_pkChr->IsNPC()) fCrushSlidingLength = 400; change like this : #ifdef NEW_SKILL_KNOCKBACK if (IS_SET(m_pkSk->dwFlag, SKILL_FLAG_CRUSH | SKILL_FLAG_CRUSH_LONG | SKILL_FLAG_KNOCKBACK) && !IS_SET(pkChrVictim->GetAIFlag(), AIFLAG_NOMOVE)) #else if (IS_SET(m_pkSk->dwFlag, SKILL_FLAG_CRUSH | SKILL_FLAG_CRUSH_LONG) && !IS_SET(pkChrVictim->GetAIFlag(), AIFLAG_NOMOVE)) #endif { float fCrushSlidingLength = 200; if (m_pkChr->IsNPC()) fCrushSlidingLength = 400; #ifdef NEW_SKILL_KNOCKBACK if (IS_SET(m_pkSk->dwFlag, SKILL_FLAG_KNOCKBACK)) fCrushSlidingLength *= 3; ///can change like u wanna #endif //stop thank u
  2. hi guys some one can show me a video of this working please? thank u in advance
  3. Thank u @Rakancito ! i don't understand where is the bug °_°… all work perfect just 4 lines of code xD [HELP] for who have the bug xD open syslog if there is *XXX target too far* we forgot the self_only in skill proto db! remove it check in client too … we need remove all self_only for this id skillskill client db too ….. client skill_table 93 패룡폭 4 1 1 0 HP -(70+3*lv+(22*iq+13*mwep+100)*ar*k) 50+160*k 20 ATTACK,SPLASH,ATTACK_FIRE_CONT NONE lv+5*iq*k iq*0.2*k 0 0 MAGIC 15 1 2500 500 insert into `skill_proto` VALUES ('93', 0xC383E280A0C383C290C382C2B7C383C2A6C383E280A0C383, '4', '1', '1', '0', 0x4850, 0x2D283830202B20362A6C76202B202832302A69712B31342A6D7765702B313230292A61722A6B29, 0x35302B3136302A6B, '0', '0', 0x3230, 0x2D28313930202B20372A6C76202B202832352A69712B31362A6D7765702B313330292A61722A6B29, '0', 'ATTACK,SPLASH,ATTACK_FIRE_CONT', '0', 0x4E4F4E45, 0x6C762B352A6971202A6B, 0x69712A302E322A6B, '0', '0', '0', '0', 0x35302B3136302A6B, '0', '0', 'MAGIC', '15', 0x31, '2500', '500'); DB query ….[FOR DUMMY "i joke guys"there are 0 in some columns, because if there are "NULL" cant run the query but work perfect tested in this screen: no bug i've tested in different maps and with different condition….
  4. Thank u so much mate! ive find but changed nothing still dont work ç_ç
  5. where is exactly? can u tell me the path please ? i think yes i use vs 2017
  6. hi thank u , yes i compile vith v141 toolset but when i enable the define for compile this code when link give me this error if i disable this code all is ok and link the .exe can u help me to solve?
  7. For me dont work …. i cant compile the src later i add the codes….i use vc141 can u help me please? 15>\source\userinterface\LTiplist.h(149): error C2440: 'initialize': impossible convert from 'initializer-list' a 'std::vector<std::tuple<std::string,std::vector<int,std::allocator<_Ty>>,std::vector<_Ty,std::allocator<_Ty>>>,std::allocator<std::tuple<std::string,std::vector<_Ty,std::allocator<_Ty>>,std::vector<_Ty,std::allocator<_Ty>>>>>'15> with15> [15> _Ty=int15> ]15> No constructor could accept the source type, or the constructor overload resolution was ambiguous
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / 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.