Jump to content

Brothers

Advanced members
  • Content Count

    136
  • Joined

  • Last visited

  • Days Won

    3

Brothers last won the day on October 20 2021

Brothers had the most liked content!

Community Reputation

24 Neutral

2 Followers

About Brothers

  • Rank
    Boatswain

Recent Profile Visitors

3,069 profile views
  1. Im trying to make sure it also work when fusing death set + ring 85. Do i need to add a line like this : local FBody_ID = GetItemAttr ( body , ITEMATTR_VAL_FUSIONID ) -- Get the fused ItemID of body below the Dina?
  2. True. Nah i think Dan's file had something like this. The basic stats of an Blade of Enigma is like +3 strenght +1 agi (or whatever). You could just add extra stats to it, but max like +10 strenght extra. Its like gemming your sword, but its just adding more stats. But indeed , upgrade kylin would be more easy to add in this game.
  3. Hey guys, There were server files somewhere here, with upgrade unsealed 65 items, like you could add extra strenghts on weapons. Does anyone know theses? - Ivy
  4. Hi guys, the first moment i enter the game, i can use the commands, in less then few seconds, i cant do anything anymore. Anyone familiar with this problem?
  5. Hi all. I use BD altar in my server. To unseal it we need the stones. Theres a change it will fail and bring a curse on the altar. Is there a way to make the succes rate better? I think this is the file i need to edit: function ItemUse_HZLi ( role , Item , Item_Traget ) local Item_ID = GetItemID ( Item_Traget ) if Item_ID ~= 266 then SystemNotice(role ,"Please place the Power of Flame on the altar") UseItemFailed ( role ) return end local Cha_Boat = 0 Cha_Boat = GetCtrlBoat ( role ) if Cha_Boat ~= nil then SystemNotice( role , "Cannot use while sailing" ) UseItemFailed ( role ) return end local Item_type = GetItemType ( Item ) local Item_Traget_Type = GetItemType ( Item_Traget ) if Item_type == 66 and Item_Traget_Type == 65 then local str = GetItemAttr( Item_Traget ,ITEMATTR_VAL_STR ) --力量 if str >= 5 then UseItemFailed ( role ) return end local rad = math.random ( 1, 100 ) if rad<=50 then local Elf_URE = GetItemAttr(Item_Traget,ITEMATTR_URE) --当前耐久记录剩余封印点数 str = str + 1 if Elf_URE >= 50 then Elf_URE = Elf_URE-50 end SetItemAttr( Item_Traget ,ITEMATTR_VAL_STR ,str ) SetItemAttr( Item_Traget ,ITEMATTR_URE ,Elf_URE ) else local Elf_MaxEXP = GetItemAttr(Item_Traget,ITEMATTR_MAXENERGY) --最大能量记录诅咒点数 local Elf_EXP = GetItemAttr(Item_Traget,ITEMATTR_ENERGY) --最大能量记录诅咒点数 Elf_MaxEXP = Elf_MaxEXP + 1 Elf_EXP = Elf_EXP + 1 SystemNotice( role , "Unfortunately, the Altar has been cursed by the soul of the black dragon" ) SetItemAttr( Item_Traget ,ITEMATTR_MAXENERGY ,Elf_MaxEXP ) SetItemAttr( Item_Traget ,ITEMATTR_ENERGY ,Elf_EXP ) end end end Is 100 100%, and , <= 50 , 50 => / 50% succeed and fail?
  6. Might be more clear, like what do they accept, instead of what not.
  7. Hey guys, In my head i have a great idea about a server. And this idea is allready into my server files now. Sad part is, after playing a few weeks, it would get tired. So i need to brain storm with some people. If you like to discuss with me, or add some ideas, your welcome to join my Discord page: https://discord.gg/uGAbFZQM Quick details about the server: Finish welcome quest = lv 75 When creating account u get a rebirth stone = Class changer ^^ Free unseal 55's, fairys, ring lv 70's [Like : 10 str,10agi,10con] Ca has just 3 rounds, good to farm UG's, Advanged gems, BD gems (hard). More in discord
  8. Thanks for yourreply. Can i ignore it ? Or would that cause any problems? I seemed to fix a different lua err, which caused me that i didnt earn any exp after killing mobs.
  9. Hey all, I try to read Lua_err and i want it as clean as possible, because i think they show broken stuff? Also when i type &misreload ingame, i want it to be clean, so for me, there are no bugs/errors. Now i see this for example: [07-14 21:48:54]resource/script/calculate/skilleffect.lua:16835: attempt to call global `GetPetUreLV' (a nil value) Im this far, i know i need to go to skill effect, and read the 16835's line. I think it is looking for GetPetUreLV but it cant find anywhere in system, am i right?
  10. Brothers

    Create New Gems

    Your the best I found the problem, the notice of the gem is in Client > Script > lua > Scripts. Thank you very much!
  11. Brothers

    Create New Gems

    Wauw, good topic & clear. But i do wonder. I have done everything you said, i've added BD gems to my server files who've got editted it. Copy paste from other files, and it is working. But i still get to see this: Is there another file where you can find these info? It doenst give PR but +50 attack each level
  12. Few years later, back to my old files.. Sadly still everytime i try to use the iproved items, notihing happends Added the files above, checked lua err and found this: [07-02 22:15:29]resource/script\calculate\functions.lua:6100: attempt to call global `GetElfLV' (a nil value) What do i need to do with GetElfLV?
  13. Hey guys, My experience in top started with the private server Dungeon sea online. There i've experienced Kyjj, and i wanna start this into my own server. Finally i got the maps ready. I only cannot get a portal strangly to it. I want it to open like Chaos argent would, but no luck until today. Most of the games who had Kyjj, also had an npc who teleported to Kyjj. I also dont mind to have a NPC for teleportation, but is it then still possible to make a chest drop on a specifik time? Like it would be online every hour, but evertime the clock ticks XX:15 there spawns a boss? - Ivy
×
×
  • Create New...