Jump to content

DangThao

Community
  • Content Count

    307
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by DangThao

  1. local Item_bg = GetChaItem ( role , 2 , 1 ) if Item_bg ~= Item_Traget then SystemNotice(role , "Item on second slot is a not fairy type. Cannot feed" ) UseItemFailed ( role ) end OR local item = GetChaItem(role, 2, 1) local item_type = GetItemType(item) if item_type == 59 then Notice("Во втором слоте есть фея.") else Notice("Во втором слоте нет феи.") UseItemFailed ( role ) end
  2. Hello, do you guy knows how to cap level while the exp system still goes to a max level? What i mean is, i want level cap to be max at level 100 atm, after a week, i want to raise 10 level = 110 BUT i dont want the exp to bug like while max lv100, you kill a monster gave little exp from lv 99 then jump to 100 but u still get a like 0.03% or so on the character exp system. LV_LIMIT = 110 NEW_LV_LIMIT = 110 Once i restart server, the level cap will raise(do it manualy OFC). Anyone understand? if so, how do you do it?
  3. npcscript function(npc talk), npcsdk (item.func and return), forge script (rebirth function).
  4. Check roso file and just took it from there, but u will need all necessary parts(npcsdk and so) in order to make it work perfectly. Or Copy 1 or 2nd or 3rd rebirth and remake into 4th rebirth.
  5. DangThao

    Top Mounts

    Just wait for Corsairs Online by @KONG =P. Soon to be on beta then so on... They got all those stuff.
  6. @Lucky maybe addons/extensions and so keep it separate. Just release with details on on how to install it and whoever wants it, they can add it manually.
  7. Atleast that's how i was able to fix mine =P. Someone told me that and it works. So i guess hehehe
  8. Make sure ur musinset.bin are using .ogg file not the old one. U can just go take someone musicset.bin which used .ogg music file. Put in urs and replace and TADDDDDDDDAAAA it works! =P
  9. @V3ct0r is this file the same as http://moonwolf.toxicfarm.com/t225-topic? If so, is there EN version for it?
  10. Oh, yea some server got different getexp and so. Just saying, sometimes it doesnt matter cause most of the exp formula gonna be the same.
  11. Some people still got problem with thor since thor's patcher much better and sufficient. If someone gonna use thor patcher, use the mermaid thor patcher someone released it here. Use that as base and design yourself your own launcher. Good luck =P
  12. @blankode I think you should provide the full getexp from function.lua side too. If exp formula are different it can cause problem within leveling system unless the getexp 1-100 within the function.lua is the same then i guess not.
  13. If you already got the exp formula for function.lua(getexp), variable.lua(DEXP) and charlvup.bin/txt then you just need to change your init_attr.lua - > SetChaAttrMax( ATTR_LV --Max level Make sure the exp required are all the same so wont bug anything. If dont got some of these, you will either need to calculate the exp or get from a file that has it and paste into yours.
  14. if Baoshi_NeedLv < 4 then --Lv1-3 = 100% Check_A = 1 CheckFaild = Percentage_Random ( Check_A ) elseif Baoshi_NeedLv == 4 then --Lv4 = 90% Check_A = 0.9 CheckFaild = Percentage_Random ( Check_A ) elseif Baoshi_NeedLv == 5 then --Lv5 = 70% Check_A = 0.7 CheckFaild = Percentage_Random ( Check_A ) elseif Baoshi_NeedLv == 6 then --Lv6 = 50% Check_A = 0.5 CheckFaild = Percentage_Random ( Check_A ) elseif Baoshi_NeedLv == 7 then --Lv7 = 30% Check_A = 0.3 CheckFaild = Percentage_Random ( Check_A ) elseif Baoshi_NeedLv == 8 then --Lv8 = 20% Check_A = 0.2 CheckFaild = Percentage_Random ( Check_A ) elseif Baoshi_NeedLv == 9 then --Lv9 = 10% Check_A = 0.1 CheckFaild = Percentage_Random ( Check_A ) end Edit to your own liking. Good luck If you want to be 100%, just do: if Baoshi_NeedLv < 10 then --Lv1-9 = 100% Check_A = 1 CheckFaild = Percentage_Random ( Check_A ) end
  15. Or u can use the .ogg music folder and musininfo.bin. This also fixed too. If you experiencing map transition crash, it's also that too. I used to think it's areaset but i guess not.
  16. That or in int_cha_item.txt in server side.
  17. Also, do you guy know if it possible to add viewid=$id in browser address for this webshop? like edit news, it will show something like this (check attachment)? When you click edit it will show the item information, why? u asked, because i want to do something else with it.
  18. Do you guy know how to cache iteminfo into this webshop? so it will be the same as serverside? no there's no iteminfo to cache?
  19. Yea, i managed to fixed in the work.php and in sql. Sometimes i can see the first and second tab and third tab not working somehow. I think this web is public released in Lucky's Archive. Many DBs but the one i used seem to work the most with little tweak in some pages. Currently i fixed add item and added edit item. So most are samed as the one in Lucky's Archives. If u still need the code (pages for the site_mall, ill upload here)
  20. Note: Tabs Fashion, Others are not working even though inside database set some item into cat2 cat3.
  21. Anyone knows who's the developer for this website (check picture)? Manage to make it working but those other tabs doesnt show when i already apllied the category.
  22. I would like to know too, cause seems like there is one but idk where to find. Such as the one that when player logout and login, it will display the helpinfo file.
  23. DangThao

    Server rates

    First one u can put into variable.lua at the end and the second one inside exp_and_level.lua find: exp_up = exp_up * EXP_RAID_STATE and paste it below
  24. Copy paste from ROSO file in Lucky's Archives @Mega
×
×
  • Create New...