Jump to content

Dastgir

Script Developers
  • Content Count

    3805
  • Joined

  • Last visited

  • Days Won

    250

Everything posted by Dastgir

  1. https://github.com/HerculesWS/Hercules/pull/506 ^ should be merged soon, have opened PR, in case someone wants to review(although, I have gone through many of them and it seems fine)
  2. @@Angelmelody It Works on new clients, I guess older clients were buggy, which didn't showed the Aura.
  3. If using renewal, you should use bonus named bAddRaceTolerance Instead of bSubRace
  4. Can you post the item script , so we can get to know if something is wrong on item_db
  5. 0 - constant not foundI think they are case sensitive (and you probably typo at some word) bSubRace bSubEle bSubSize
  6. Replied I didn't see any words that you replied ?!Can you check again..?!(( Oops sorry, seems my net failed at time of reply, replied now.
  7. Your NPC is using 4020 as viewID, but it doesn't exist. thus it cannot use it.
  8. src/map/map.h:MAPID_AKATSUKI = 0x11 Other 2 should be 0x12 and 0x13 Thank you! :DHow about changing the variable from 32bit to 64bit?That's not a easy fix,It needs to change variable type at many places in many files, which would be dome eventually when some new jobs are introduced.
  9. src/map/map.h:MAPID_AKATSUKI = 0x11 Other 2 should be 0x12 and 0x13
  10. We only have one jobmask left 1<<31 (i.e 2147483648, which is limit of int, in which we store the jobmask) 1<<32 and 1<<33 are greater than 2.147 bil, thus it gets too big to be used, For allowing more id, change the variable datatype: as Neo Said Currently there is only 1 more slot left in the job mask since it is 32 bit. In case you need to add more you will need to change the variable to 64 bit. About Case 17: maybe MAPID_AKATSUKI and MAPID_ANBU have values 17, that's why, change to 18/19
  11. There was a fix committed to Hercules yesterday, so updating the Hercules will solve your problem.
  12. No, since that's fix for conflict between char based and account based genders. The topic starter is saying that players can use #changesex, which they shouldn't be able to unless its used on groups.conf or bindatcmd script command.
  13. @@Tutti Do you have any custom script which uses bindatcmd and have changesex in it? Or maybe gm are doing #changesex instead of players?
  14. Groups.conf You might have line as changesex: [true, true] Change it to changesex: true The second true allows to use # command.
  15. Can't be done until my PR of vending struct to plugin is accepted.(Can be done, but with ugly method, which I won't code )
  16. Dastgir

    Auraset

    The problem is I can't reproduce the crash with your methods.Can you state which buffs you had?
  17. Dastgir

    Auraset

    Wow thank you very much. I'll test this asap EDIT: Looking good so far, I've tested it on my test servers and it's working fine. @hide+aura or aura+buffs status does not produce crash anymore. I'm moving this to my Live Server to see if it will still crash. @@Dastgir Map crashed again. To reproduce: - Get aura in-game - Get buffs/status - Character select - Map crash Seems like AuraSet likes to make new crashes each time
  18. Haven't check that, just got minimal time to display major bugs.
  19. @@karazu Added v1.0b , Now, it will not double drop items.
  20. Dastgir

    Auraset

    Hoping it does not crash now . New version added v1.4a Tested several method, and doesn't crash for me Tested methods: 1) having status with/without hide 2) warping with/without hide 3) changing auras with/without hide and having/not having statuses.
  21. In visual studio, Right click the plugin. Let's say autoattack. So right click autoattack project(from the left side where there are projects named map-server and all) And click rebuild(or build) whichever option is there.
  22. When there's update to server side (SRC) folder, you also need to recompile the plugin, to make it sync with updates. In short: Recompile plugin and it will work.
  23. Do the party system maybe(I guess that's incomplete)
  24. Fork it, complete it as Much as you can.And when @@KeyWorld comes back, just make a PR, So kinda, we have good progress, (Hoping I can contribute to this project next year, since I will be learning java/JavaScript/asp and all kind of web stuff next year)
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.