Jump to content

Hyroshima

Members
  • Posts

    163
  • Joined

  • Last visited

  • Days Won

    8

Hyroshima last won the day on April 29

Hyroshima had the most liked content!

About Hyroshima

  • Birthday 06/03/2010

Profile Information

Recent Profile Visitors

5248 profile views

Hyroshima's Achievements

Metaling

Metaling (6/15)

  • Conversation Starter
  • Reacting Well
  • Dedicated
  • First Post
  • Collaborator

Recent Badges

62

Reputation

4

Community Answers

  1. Send me the link where you downloaded this here on rathena so I can take a look. !please do not change the text size and white background, this is unpleasant.
  2. Sorry, but this error is not from the Baron Of Cards system. getarrayindex() it's a Hercules command! I believe that this script you are trying to use was made to run on Herc, to run on rA you need to properly convert the commands and maintain the logic.
  3. View File Baron of Cards By deliver with noble items to the baron he will allow you to try your luck in your card game, being able to get cards mini-boss, mvps or common. Submitter Hyroshima Submitted 04/26/24 Category Games, Events, Quests Video https://www.youtube.com/watch?v=BIfQYpXqsPg Content Author Hyroshima  
  4. Version 1.0.0

    141 downloads

    By deliver with noble items to the baron he will allow you to try your luck in your card game, being able to get cards mini-boss, mvps or common.
    Free
  5. Alter: specialeffect(EF_FIREWALL2, AREA, .@cid); To: specialeffect(EF_FIREWALL2, AREA, convertpcinfo(.@cid,CPC_NAME)); And: specialeffect(EF_HEAL, AREA, getcharid(3)); To: specialeffect(EF_HEAL, AREA, strcharinfo(0));
  6. This happens in relation to the standard system for dynamically duplicating npcs that was implemented. I made the update but forgot to share with the guys xD duplicatenpcV3_(2022-12+)_dynamicnpc.diff
  7. Had the same problem with an older revision, I solved it by just displaying the effect if the player is already nocasted (instant skill), as the effect works normally below the nocast cap. in the skill.cpp file look for the function: int skill_castend_damage_id then look for the asura skill: case MO_EXTREMITYFIST: find this function in the asura function case: skill_attack(BF_WEAPON,src,src,bl,skill_id,skill_lv,tick,flag); add this below it: if(status_get_dex(&sd->bl) >= battle_config.castrate_dex_scale) clif_specialeffect(&sd->bl,328,AREA); Obs: It's not the best solution, but it will work.
  8. Realmente se ele estiver pegando os arquivos do RO oficial estão criptografados, mas muita gente já usa um patch/client com arquivos que já foram decompilados como base. Esses 2 tópicos podem ajudar a decompilar os lub:
  9. According to a need I had, I didn't find another way to check how many items were left in a npc shop like marketshop, so I made this command to return the amount that still exists in the npc. *npcshopstock("<name>",<item_id>); Obs: In case of -1 return the item was not found in the shop. Example: prontera,157,168,5 script Stock View 113,{ if(!npcshopstock("Bugigangas",607)) { mes "Item "+getitemname(607)+" is out of stock."; close; } mes "Item "+getitemname(607)+" has "+npcshopstock("Bugigangas",607)+"x in stock. is out of stock."; if(select("Open Shop:Cancel")==2) close; close2; callshop "Bugigangas",1; end; } - marketshop Bugigangas 112,607:5000:150 I have little experience in src but I can do some things lol ? npcshopstock.diff
  10. @ Rook1es I added the manual fix, you can install the diff and make the fix I left in the post.
  11. which revision are you using? if it is before 2021 you must use the previous versions of the mod here in the topic. @Edit I found the fault related to coins and tcgs, i will make the corrections later and update the previous post with the 9.2 file (Cash and Zeny find themselves normal).
  12. Fixed and available in my archive post.
  13. at the time of uploading I sent the file that still had this warning ? as I ended up deleting the file that I had already fixed, I'll do it again and send it here as 9.1 (fix itemdb_exists()) I will edit the post where I make rev9 available and put 9.1 under it has been tested on client 2017 and 2020
×
×
  • Create New...