Jump to content

ElBrujoo

Inactive Member
  • Posts

    40
  • Joined

  • Last visited

  • Feedback

    0%

About ElBrujoo

  • Birthday 01/15/1996

Informations

  • Gender
    Not Telling

Social Networks

  • Discord
    MarcoPerri#1303
  • Skype
    xelbrujoox

Recent Profile Visitors

1177 profile views

ElBrujoo's Achievements

Contributor

Contributor (5/16)

  • Dedicated
  • Reacting Well
  • First Post
  • Collaborator
  • Conversation Starter

Recent Badges

4

Reputation

  1. I have little time but soon i ll answer with the corrected quest. However reading your error i imagine what to correct:
  2. I can do it and teach you how to make it as u want. Skype -> xelbrujoox
  3. I usually put metin stone exp to 1(as sebastian said) and they don't complain anymore, however if this won't work for you i'll investigate deeply.
  4. I can guess the problem but i prefer looking on skype. In char item usually an item is selected, but your "isfight" method is surely related to a character, so you have to call it from a char instance(bad engl). I'll try to help you on skype -> xelbrujoox
  5. Ok, i'll test directly your quest today and let you know..
  6. your launcher checks the size of every lib in client to prevent hacking or similar stuff. You have to open client src, search for the table with all python libs with they sizes and put the new one(that there is in the error). May be you have to edit even the number next to size, you'll get another error about it. EDIT: the file is UserInterface.cpp and you have to edit a row like this: { PYFOLD"/string.pyc", 11809, 3127631426}, <- the first number is the size, the second i didn't informed about it but it has to match anyway ahaha
  7. I think anyone is on the right path. Try checking in inventorywindow.py in locale from which slot starts your equip tab(i mean 90, 180 etc it s a declaration) and then you have to check that in your launcher too(of course has to be the same and of course2 i suppose you can check it in launcher). If can't manage it I'll try to help you on skype -> xelbrujoox
  8. The part that starts the dungeon seems not to have problems(Even because you said that it work at least once). Maybe you changed the quest several times adding or removing things without cleaning the object directory, so i suggest to delete/clear it and recompile all quests you have(quest_list) and then retry
  9. Team Viewer, the sense of the sentence is that if you don't know well what to check, i think it would be a good idea use that application to make a person check it for you. Honestly I don't know if I can solve your problem but if nobody else offers to help you and you don't mind I could try to help you. That's my skype first of all: xelbrujoox. Then we go on with tv
  10. Maybe your affect collect function is not the same as mine but i don t think that s the case. I ve tested however and all works: Before all: Then the npc: I pressed "Stack mob": and then the stack mob 2: what they do is this: when 20094.chat."stack mob" begin say("Ok") affect.add_collect(apply.INT,10,60*60*24*300*59) end when 20094.chat."stack mob 2" begin say("Ok") affect.add_collect(apply.INT,10,60*60*24*300*59) affect.add_collect(apply.INT,10,60*60*24*300*59) affect.add_collect(apply.INT,10,60*60*24*300*59) end If u need help i'll wait you on skype PS: by the way I pressed the mob stack two times more, the stack 2 added only 30 int.
  11. To block potions you have to go in char_item.cpp where potions are used and add a check like this: if (ch->GetMapIndex() == 110) return false; // or something blocking the rest of code in which he makes the pot working(same thing elixirs) To block Horse as well you have to make a check like that before in the function that makes you ride the horse, maybe HorseRide (i can t look on now) To block mounts you have to add a check in your quest that calls them like this: if pc.get_map_index() == 110 then return -- or something blocking the rest of the code in which mount are called If you have problems managing it by yourself I could help you on skype-> xelbrujoox
  12. That's EXACTLY what the affect.add_collect() is supposed to do. However to be 100% sure I tested and it worked stacking a bonus. If you still can't make it work I could help you on skype-> xelbrujoox
  13. Ok, then if "LOG | STACKABLE" makes your item working then try adding ITEM_STACKABLE to the "list" of flags -> "LOG | STACKABLE | ITEM_STACKABLE" if still doesn t work i can help you on skype PS: on sql you just had to add 4 to the flag value PPS: better restore the values to 71051 and 71052 because you have to edit them in the source too if you edit in the db in order to have them work
  14. If u still need help with your quest i can help you on skype: xelbrujoox
×
×
  • 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.