Jump to content

flexio

Member
  • Posts

    82
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by flexio

  1. no joo, česká komunita PS. SQL inject
  2. Try char_skill.cpp find edit to: Not tested.
  3. When a player write from channel 1 to 99(example) core drops. input_main.cpp else if (MessengerManager::instance().IsBlocked_Target(ch->GetName(), pkChr->GetName())) change to else if (pkChr && MessengerManager::instance().IsBlocked_Target(ch->GetName(), pkChr->GetName()))
  4. GameLib/GameType.h -----> UserInterface/GameType.h
  5. Completed (Private shop) Thanks for idea
  6. I found another problems game.py def StartShop(self, vid): if chr.IsNPC(): self.interface.OpenShopDialog(vid) else: self.interface.OpenShopDialog2(vid) edit to: def StartShop(self, vid): if chr.IsNPC(vid): self.interface.OpenShopDialog(vid) else: self.interface.OpenShopDialog2(vid) uishop.py (in class ShopDialog2(ui.ScriptWindow)) def Close(self): self.OnCloseQuestionDialog() shop.Close() net.SendShopEndPacket() self.CancelShopping() self.tooltipItem.HideToolTip() self.Hide() edit to def Close(self): self.OnCloseQuestionDialog() shop.Close() net.SendShopEndPacket() self.CancelShopping() self.Hide() Now work, thanks
  7. uiscript/shopdialog.py find { "name":"TitleName", "type":"text", "x":168, "y":4 "text":uiScriptLocale.SHOP_TITLE,"text_horizontal_align":"center" }, change to { "name":"TitleName", "type":"text", "x":168, "y":4, "text":uiScriptLocale.SHOP_TITLE,"text_horizontal_align":"center" }, Error is here "y":4 - "y":4,
  8. You must start dungeon(of npc) on the same channel. Now you are 1CH (map index 62) but map index 351(flamen_dungeon map) is CH99 or other. Try it on the OX map
  9. flamen_dungeon.quest : all (i think 3 lines) change to
×
×
  • 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.