Jump to content

Jayz

Members
  • Posts

    407
  • Joined

  • Last visited

  • Days Won

    5

Jayz last won the day on September 8 2023

Jayz had the most liked content!

About Jayz

  • Birthday 01/01/1992

Profile Information

  • Gender
    Male
  • Location
    Geffen
  • Server
    None

Contact Methods

Recent Profile Visitors

9221 profile views

Jayz's Achievements

Magmaring

Magmaring (7/15)

  • Reacting Well
  • Conversation Starter
  • Problem Solver Rare
  • First Post
  • Collaborator

Recent Badges

55

Reputation

15

Community Answers

  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
×
×
  • Create New...