Jump to content

Chaos92

Members
  • Posts

    1859
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by Chaos92

  1. u can add the skill list in skilldamagedb.txt https://github.com/rathena/rathena/blob/master/db/skill_damage_db.txt read on how it works on certain groups/maps. First, make sure you already uncomment //#define ADJUST_SKILL_DAMAGE in core.h https://github.com/rathena/rathena/blob/master/src/config/core.h Dont forget to recompile your server.
  2. use 12622 item for mount. all jobs can use that item.
  3. 1. Yes you can. Just make sure that Hosting you choose can open ports so that your CP Flux can shows login, char and map server status 'ONLINE' 2. You doesnt need to do anything with servers. Just use your VPS IP in clientinfo.xml for server login connection. 3. Prepare VPS Details eg: username, password, database name since you will insert MYSQL details in Flux config/servers.php . And Also add users in privilleges in your phpmyadmin or any database manager that you use if needed.
  4. first server in rathena1 folder second server in rathena2 folder run map,char and login in rathena1 run map and char in rathena2
  5. " How about on register sir there is no option where i can type an information about the account i want to register " the files in theme/default/account/create.php if that files blank then he will receive that thing.
  6. use ip 192.168.1.3 ? use your WAN IP and make sure they are in the same wireless network
  7. Check the files. Daily_01.bmp and daily_01.bmp
  8. u are using 20151104 so u need to use 55. packetver 23 is for 20080910
  9. are u using latest git? https://github.com/rathena/rathena insert your custom item/mob in import folder
  10. https://raw.githubusercontent.com/rathena/rathena/master/conf/battle/drops.conf here it is rathena drops.conf which lines ' option to turn showexp and showzeny ' ?
  11. i didnt use godaddy hosting, but just telling you that hostgator can open ports on their shared hosting. I already have this issue a few years before and solved by opening 3 ports that I used to check server status
  12. download latest KRO that u can find. Try use this or update it to latest one then just use your 20151104 client.
  13. its because godaddy blocking those ports.. u need to ask them open 3 ports that u need .
  14. create wireless connection with your friends connected. after that get your wireless IP address might be 192.168.x.x and use it in clientinfo.xml or... try use hamachi maybe ?. around more than 8 years ago im connecting using hamachi, didnt know now they still offer their services or not
  15. what do u mean by separate file ? its easier if u show us the error or something about that. diff clients that not ignoring errors. doram selection, etc doesnt have problem. also can use doram skills
  16. just update your KRO and it should works . ive tried a few months ago when doram released.
  17. Chaos92

    Renewal

    3rd jobs are actually disabled, there are no 3rd job changer npc in pre-renewal except you are using @job commands those renewal maps might be there but there will be no npc/monster. you can edit src for @job for removing 3rd job in that command. you can remove those maps in maps athena , mapcache and also those map in your scripts.
  18. did u mean GRF/data folder that works ? try this https://github.com/zackdreaver/RO-Clientresources and also https://github.com/zackdreaver/ROenglishRE for renewal english translation Thanks to @zackdreaver for that project
  19. dont copy mines.. just remove the line 3470
  20. https://github.com/rathena/rathena/blob/master/src/map/status.c if (sd->inventory_data[index]) { int j; struct s_random_opt_data *data; for (j = 0; j < MAX_ITEM_RDM_OPT; j++) { short opt_id = sd->inventory.u.items_inventory[index].option[j].id; if (!opt_id) continue; current_equip_opt_index = j; data = itemdb_randomopt_exists(opt_id); if (!data || !data->script) continue; if (!pc_has_permission(sd, PC_PERM_USE_ALL_EQUIPMENT) && itemdb_isNoEquip(sd->inventory_data[index], sd->bl.m)) continue; if (i == EQI_HAND_L && sd->inventory.u.items_inventory[index].equip == EQP_HAND_L) { // Left hand status. sd->state.lr_flag = 1; run_script(data->script, 0, sd->bl.id, 0); sd->state.lr_flag = 0; } else run_script(data->script, 0, sd->bl.id, 0); if (!calculating) return 1; } } remove that unassign short nameid lines
×
×
  • Create New...