Jump to content

WeedHex

Premium
  • Posts

    1547
  • Joined

  • Last visited

  • Days Won

    33
  • Feedback

    0%

Everything posted by WeedHex

  1. How can i steal a better client? How can i ask 100 things only in 1 thread? How can i make money stealing other people's works?
  2. You're compiling with debug mode enable.
  3. cmd_general.cpp find: ACMD(do_restart) you need to check there...
  4. Problem is on your firewall or on the port that you're using. Try to show you CONFIG configuration for ch1 and ch2
  5. I think code is very ugly. First thing that i see: d.new_jump_all in a timer, should be ok, but remember when you use a timer it gonna start only from 1 Char, so is useless doing pc.remove_item() from a timer where use jump_all ........ Second thing: You use too many timers and awry functions. Explain better how happens the bug. Check on you first login...
  6. FREE == BUGS/EXPLOITS PAY == SHOULD BE OK // CONTACT SOMEONE TRUSTABLE
  7. Problem is: 1-Your pc (directx or other) 2- Your texture are corrupted. 3-Your W.E. have problems.
  8. You cant fight with them. You need do change your whole source struct hihihih
  9. Youre using questlua horse. So you use horse. if it was pc quest lua you use pc.
  10. Bonus: Avarage damage. It's not on item_attr. If i have a weapon with 55% Avarage damage your check what does?
  11. Today i saw a weird thing on my uitooltip. If item with remain time stay into a shop, time shows: "Remain time 0 sec." Here's the fix: replace theese functions: def AppendUniqueItemLastTime(self, restMin): def AppendMallItemLastTime(self, endTime): Like this: def AppendUniqueItemLastTime(self, restMin): if restMin > 0: restSecond = restMin*60 self.AppendSpace(5) self.AppendTextLine(localeInfo.LEFT_TIME + " : " + localeInfo.SecondToHM(restSecond), self.NORMAL_COLOR) def AppendMallItemLastTime(self, endTime): if endTime > 0: leftSec = max(0, endTime - app.GetGlobalTimeStamp()) self.AppendSpace(5) self.AppendTextLine(localeInfo.LEFT_TIME + " : " + localeInfo.SecondToDHM(leftSec), self.NORMAL_COLOR)
  12. int horse_is_summon(lua_State* L) { LPCHARACTER ch = CQuestManager::instance().GetCurrentCharacterPtr(); if (NULL != ch) { lua_pushboolean(L, (ch->GetHorse() != NULL) ? true : false); } else { lua_pushboolean(L, false); } return 1; }
  13. You dont need to protect the pack... you need to protect your key from exe file. There are too many tricks to hide HEX. Let's study and think.
  14. lol you're explaing bad. You can use player module also in the select_char_interface wth you must do?
  15. def AppendMetinInformation(self): for i in xrange(item.ITEM_APPLY_MAX_NUM): (affectType, affectValue) = item.GetAffect(i) affectString = self.__GetAffectString(affectType, affectValue) if affectString: self.AppendTextLine(affectString, self.GetChangeTextLineColor(affectValue)) TRY LIKE THIS
  16. def AppendMetinInformation(self): affectType, affectValue = item.GetAffect(0) affectString = self.__GetAffectString(affectType, affectValue) if affectString: self.AppendSpace(5) self.AppendTextLine(affectString, self.GetChangeTextLineColor(affectValue))
  17. OMG... Syreldar ALREADY GAVE YOU THE SOLUTION. -- ????? --------pc.warp(969600,248400,41) Are you kidding us??
  18. Can you explain better??? LUA: pc.get_exp() C++: ch->GetExp() Python: PyObject * playerGetEXP(PyObject* poSelf, PyObject* poArgs) { DWORD dwEXP = CPythonPlayer::Instance().GetStatus(POINT_EXP); return Py_BuildValue("l", dwEXP); } player.GetEXP()
  19. I dont know... i'm giving many errors about this mse started from any map... If someone can find for it let me know
×
×
  • 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.