Jump to content

Syriza

Banned
  • Posts

    259
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Syriza

  1. @VegasForPresident @VegaS™
  2. good @VegaS™ @VegasForPresident @Helia01 nice work!! @Syriza bae
  3. Hey Galet, no i'm talking about a official bonus. I'm currently working on these new bonuses from the official Servers im trying to reduce a cooldown depending on the value in equipment. Example: Player changing attribute of item, and he got: POINT_SKILL_BIPABU_NEXT_COOLTIME_DECREASE_10PER == 3 in his Item, then the Skill's cooldown should reduce by 3 Seconds. Edit: sorry i misunderstood @Galet thats exactly what i want.. but only with a certain skill depending on bonus. This POINT_SKILL_BIPABU_NEXT_COOLTIME_DECREASE_10PER is only for one certain skill in this case (91)
  4. Now i find the correct function.. But can someone tell me what's wrong with this: DWORD CPythonSkill::SSkillData::GetSkillCoolTime(float fSkillPoint) { if (strCoolTimeFormula.empty()) return 0; CPoly poly; poly.SetStr(strCoolTimeFormula.c_str()); TPacketGCPointChange PointChange; if (PointChange.Type == POINT_SKILL_BIPABU_NEXT_COOLTIME_DECREASE_10PER) { return DWORD(ProcessFormula(&poly, fSkillPoint) - 3); //NotemeCoolDown } else { return DWORD(ProcessFormula(&poly, fSkillPoint)); //NotemeCoolDown } } It doesnt work.. it tell me: The Variable 'PointChange' is being used without being initialized. But what does it mean?
  5. Hey guys.. I want to reduce the cool down from a skill depending on how much the player has a certain bonus. for example: The value of the bonus in player's equipment is 7 total, then the skill's cool down should reduce to 7 seconds. can somebody help me please? i already took a look at pythonskill.cpp but i don't find anything Server Source Side i've already done it, but i need to do same in binary.. otherwise i cant use the skill.
  6. nothing to do with "kissing ass" he is one of the only person who helped me uncountable times, im just thankful. ?
  7. Of course he is a god ?? @topic useful, thank you ?
  8. @VegaS™ oh I see you added the c++ version thanks sensei but how can i use it ?
  9. Hey developers im looking for a function in Python that checks if a item has 1-5 attributes. since getitemattribute in pythonplayer doesn’t work idk.. i hope I get some help @VegaS™@martysama0134 @Syriza
  10. You're not stupid just not smart enough. This is just a visual bug, i noticed it too, but i couldnt fix it. The second item is just a graphic bug.
  11. Thank you For improving buddy System is tested again on clean files, it works. If you have any problems write me Discord btw @VegaS™ we are waiting for your improvement
  12. Some codes were missing, edited.
  13. M2 Download Center Download Here ( Internal ) Since i always get help from vegas and others, i wanted to give back something, maybe it helps someone. Here i have a system which is shared by a friend of another board, i made it like official and fixed the bugs. Download: [Hidden Content] Virustotal: [Hidden Content]
  14. @VegaS™ Sorry i forget to write.. Solution is working, its even better then official. In official i have a small delay (lagg) when skipping, but with vegas's solution everything is working fine. Except this (if i add this, the intrologo doesnt even show anymore!) if (bSkipAllowed) { bool is_pressed = false; for (BYTE i = 0; i < 256; ++i) { if ((GetAsyncKeyState(i) & 0x8000) != 0) { is_pressed = true; break; } } if (is_pressed) break; } but i dont think this is needed since without you can skip too with mouse clicks, escape and more. As i said, you dont need this, the first part is enough.
×
×
  • 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.