Jump to content

kasko30

Inactive Member
  • Posts

    108
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by kasko30

  1. Dude there is no quest flags with this code ???!
  2. Or just this simple code: find in char_item.cpp : case ITEM_PICK: // END_OF_MINING if (!item->IsEquipped()) EquipItem(item); else UnequipItem(item); break; replace with: case ITEM_PICK: if (!item->IsEquipped()) { if (GetQuestFlag("ARMOR.CHECKER") && get_global_time() < GetQuestFlag("ARMOR.CHECKER")) { ChatPacket(CHAT_TYPE_INFO, " you need to wait %d sec.", (GetQuestFlag("ARMOR.CHECKER") - get_global_time()) % 60); return false; } EquipItem(item); SetQuestFlag("ARMOR.CHECKER", get_global_time() + 3); } else UnequipItem(item); break;
  3. I meant for you to unpack your original item.eix+item.epk you'll find the files there..
  4. When you unpack the item you will find .msm files in the patch \ymir work\item try replacing your fan's msm file with another one and see what happens.
  5. I had this problem one time in charachterwindow.py back then i didn't know the problem cause the syserr was empty and yes the problem was that the path to the image files was like this: image: "", Thank you.
  6. I never though of hidden files,I hope you find a solution than we can both use !
  7. I am sure this has something to do with k inventory(the extended inventory systems) that deposit books,stones and up items
  8. Try and check the diffrences between the client source packet.h and the server source packet.h
  9. Thank you , How do i make it stable or just disable it .
  10. root/uidragonsoul.pydef SelectItemSlot(self, itemSlotIndex): // Searchelif app.BUY == curCursorNum:chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.SHOP_BUY_INFO)Under to Addelif app.IsPressed(app.DIK_LALT):link = player.GetItemLink(player.DRAGON_SOUL_INVENTORY, itemSlotIndex)ime.PasteString(link)
  11. Hello devs So the problem is that when the player reached max level in game his hp of course raise but this raising is diffrent beetwen player there are some who get +200hp others +300 others +500 etc I want to make it the same for all players and thnak you
  12. You could download the latest updates unpacked from this topic : [Hidden Content]
  13. You call this encrypting hhhhhhhhh Really Nigga !
  14. ClientSource: EterGrnLib ==>ThingInstance.cpp EterLib==>GrpObjectInstance.cpp+GrpObjectInstance.h UserInterface==>InstanceBase.cpp + InstanceBaseEffect.cpp+PythonTextTail.cpp+PythonTextTail.h How to edit and stuff!?,I don't know but i am pretty sure these are the files that you want to edit.
  15. It looks so amazing simple and cool keep the good working .. hope you fix the download link
  16. Hhhhh so funny #HERO dude you know they puted a new protection to their files and if someone upnacked them (the hero xP3NG3Rx ) would share them with all of us
  17. Did you check your horse quests maybe the problem is there
  18. #CLOSE REQUEST I solved it . there was a #DEFINE in my source service that was desabling the log .
×
×
  • 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.