Jump to content

Technoken

Members
  • Posts

    505
  • Joined

  • Days Won

    8

Everything posted by Technoken

  1. Which update are you talking about? Please be more specific. Update xilero to your laptop? You should've posted on their forums or ask assistance from their staffs instead of posting here. I believe this is posted on the wrong section. Moved to off-topic.
  2. Updated to 1.1. Please re-download the file. Thanks for reporting.
  3. I think you will also need a 2016 client or higher.
  4. on battle.c find and remove/comment this line (sd->class_&MAPID_UPPERMASK) == MAPID_NOVICE || (sd2->class_&MAPID_UPPERMASK) == MAPID_NOVICE ||
  5. Anybody here knows how to make this work? I can't seem to make it work on 2015-11-04 clients. http://irowiki.org/wiki/Basic_Game_Control#Mouse_Controls Honestly I didn't know about this one, but one of my staff told me about it. And I think it's a nice feature but idk how to make it work.
  6. When you diff your client using nemo, make sure to tick the Remove GM Sprites On your database, select login table then edit the group_id column.
  7. Was moved here https://github.com/rathena/rathena/wiki But it's missing some info.
  8. use git stash save to save the changes you've made. then git pull to update it to the latest. then git stash pop to return the changes you saved. The hardest part in here is fixing the conflicts if there are. The more modifications you have, the more conflicts you would have to get.
  9. Try to double check the codes that you applied. It's working fine on me.
  10. On itemdb.h find: struct s_item_vend item_vend[MAX_INVENTORY]; replace: extern struct s_item_vend item_vend[MAX_INVENTORY]; On itemdb.c find: struct s_roulette_db rd; add below: struct s_item_vend item_vend[MAX_INVENTORY];
  11. @Jey I was talking about the Horror Toy Factory script.
  12. on itemdb.c apply this static DBMap *itemdb_randomopt_group; /// Random option group DB struct item_data *dummy_item; /// This is the default dummy item used for non-existant items. [Skotlex] struct s_roulette_db rd; + struct s_item_vend item_vend[MAX_INVENTORY]; /** * Check if combo exists If it still doesn't work. I'll just update here whenever I got mine working. Can't do it right now since im not at home.
  13. Can you try this one if it would work. I can't test it right now. On itemdb.h find struct s_item_vend item_vend[MAX_INVENTORY]; replace with extern struct s_item_vend item_vend[MAX_INVENTORY];
  14. Do you have any mods that can affect the map server crash? If none, please post this issue here https://github.com/rathena/rathena/issues so the devs could easily notice it. Would also be better if you could provide more info about the crash.
  15. @Jey XD guess that's need to be updated too on the repo.
  16. Just replace sleep2 with sleep since there's no attached rid when the sleep2 is called. It was because of this commit Git Hash: a8e4c83
  17. Using OnPCDieEvent is possible too. It will trigger the checking everytime someone dies inside the map, while OnTimer will trigger the checking every XXXX ms. Btw using getmapusers will return the number of players inside the map, so it will still count dead characters as long as they are inside the map.
  18. What rAthena git hash is your server on? If you believe that this is a bug from rAthena you can report it here(https://github.com/rathena/rathena/issues) so the devs can fix it.
  19. You can try - script pvp_warp_announce -1,{ OnPCLoadMapEvent: if(getmapflag(strcharinfo(3), mf_pvp)){ announce "This is a PvP Area.",bc_blue|bc_self; } end; } Dont forget to add mapflag loadevent on the pvp maps.
  20. Just add this below OnNPCKillEvent if(strcharinfo(3) == "guild_vs2-1")end; Should be like this OnNPCKillEvent: if(strcharinfo(3) == "guild_vs2-1")end; switch(killedrid) { case 1086: callfunc ("AddPointChar","MVP"); break; /*Golden Bug */ case 1112: callfunc ("AddPointChar","MVP"); break; /*Drake */ case 1115: callfunc ("AddPointChar","MVP"); break; /*Eddga */ case 1150: callfunc ("AddPointChar","MVP"); break; /*Moonlight */
  21. I mean post the other script too. The script that counts the killed MVPs.
  22. It's not in here. Can you also post your script which counts the mvps killed? is it something like mvp ranking or mvp ladder script?
  23. Please post your event MVP room script so we could help you.
  24. @skymia You need to update your trunk files or apply this patch manually. LINK
×
×
  • Create New...