Jump to content

Jayz

Members
  • Posts

    407
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Jayz

  1. Yes, that's possible. Please send me a private message if you're interested.
  2. You are trying to register an account using _M or _F and log in. This feature may nt be enabled here. // Can you use _M/_F to make new accounts on the server? // Note: This only works if client side password encryption is not enabled. new_account: no https://github.com/rathena/rathena/blob/5928ad75c6d3f2e4e261fc3472095067abada77e/conf/login_athena.conf#L54
  3. Yes it supported but the diff code is out of date you need someone to update the codes on the latest rathena
  4. Do you mean extended vending system? https://rathena.org/board/topic/116245-release-extended-vending-20/
  5. switch(select("[Gold Credits to Violet Credits]","[Gold Credits to Zeny]","[Zeny to Gold Credits]","[Violet Credits to Gold Credits]")){
  6. Inside grf the file name is msgstringtable.txt
  7. Do you mean you will use a Monster Card, like a Poring Card, compounded onto your armor to make Full Strip bypass FCP work?
  8. Try on battle.cpp https://github.com/rathena/rathena/blob/c74ad5c8c227f1464de790651a52b2b1f8f92b38/src/map/battle.cpp#L2618 add if (pc_isvip(sd)) return; after if (!battle_config.arrow_decrement) return; final result void battle_consume_ammo(map_session_data*sd, int skill, int lv) { int qty = 1; if (!battle_config.arrow_decrement) return; if (pc_isvip(sd)) return; if (skill) {....................................................
  9. Hello, I've manually applied a diff patch here in this part. I'm not sure if it's correct, please correct me if necessary. Here's the diff patch that I applied. - if( (g = sd->guild) == NULL ) + if (sd->bg_id) + g = bg_guild_get(sd->bg_id); + else + g = sd->guild; + if (g == NULL) This is from the latest rAthena Files. auto &g = sd->guild; if (!g) This is what I did. If there are any mistakes, please correct me. Thank you very much. auto &g = (sd->bg_id) ? bg_guild_get(sd->bg_id) : sd->guild; if (!g)
  10. Solve this question Selects an option from the menu, it determines which equipment slot was selected (.@part) and checks if that slot is equipped using getequipisequiped.
  11. I am trying to create custom crafting with an equipment menu. How can I redirect it to its correct category? For example, if I choose Armor from the menu, it should go to the Armor tab. This is the script I made, but I'm not sure how to properly retrieve the equipped equipment. setarray .@eq[1], EQI_HEAD_TOP,EQI_ARMOR; for(set .@i,1; .@i<getarraysize(.@eq); set .@i,.@i+1){ if(getequipisequiped(.@eq[.@i])){ set .@menu$,.@menu$+F_getpositionname(.@eq[.@i])+" ~ [ " + getequipname(.@eq[.@i]) + " ]"; set .@equipped,1; } set .@menu$,.@menu$+":"; } set .@part,.@eq[select(.@menu$)]; if(getequipisequiped(.@eq[.@i]) == EQI_HEAD_TOP) { mes "Wearing Top Headgear"; close; } if(getequipisequiped(.@eq[.@i]) == EQI_ARMOR) { mes "Wearing Armor"; close; }
  12. Use router,, because you need to portforward your LANIP to connect,, if you trouble with your connection and you want to use pocketwifi,, use hamachi instead but you need data service in your pocketwifi
  13. For offline mode use the LAN IP on clientinfo,xml e.g. 192.168.100.1
  14. Try in the keyboard control ```ALT + END```
  15. look on https://github.com/rathena/rathena/blob/master/conf/battle/skill.conf // Should traps (hunter traps + quagmire) change their target to "all" inside gvg/pvp grounds? (Note 3) // Default on official servers: 1 (for players) gvg_traps_target_all: 1
  16. You can click the main schemas in your phpmyadmin to expand the databse table and you can find the ```login``` once you found the login click it and find your username in the line of your username find the group_id and make it 99 Just double click the group_id field the default value is 0 just double click the 0 to edit
  17. Jayz

    About SC_ITEMBOOST

    It really work thank you for your effort, now im reading the change and analyze it so next time i can do it by myself btw i start learning first the breakpoint in visual studio so if i had map crash error i easily detected,
  18. Jayz

    About SC_ITEMBOOST

    Okay thank you for the idea ill try to my end to find the conflicts and i will wait your's because im newbie on src starting learning
  19. Jayz

    About SC_ITEMBOOST

    I found the issue about @mobinfo but i use the excluded_item_ids since both are same concept and it work, when i use @whodrops 1202 the Knife rate will not affected on SC_ITEMBOOST but when i use @mi the Knife is affected by SC_ITEMBOOST all i can say is its working we need to find the logic on @mi command thanks
×
×
  • Create New...