-
Posts
27 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Hyllok
-
Salve mano! I recommend you to check out @Sapito Sucio's awesome content!
-
Hey everyone! I’m trying to modify the NV_FIRSTAID skill to turn it into a Heal Over Time (HoT) skill, healing 2% of Max HP per second for 4 seconds. I attempted to use add_timer and skill_addtimerskill, but unfortunately, I wasn't able to get it working. Could someone please help me understand how to make this work? Any guidance would be greatly appreciated! case NV_FIRSTAID: { int healAmount = (sd->status.max_hp * 2) / 100; status_heal(bl, healAmount, 0, 2); clif_skill_nodamage(src, *bl, NV_FIRSTAID, healAmount, true); clif_updatestatus(*sd, SP_HP); // Scheduling ticks for (int i = 1; i <= 3; i++) { skill_addtimerskill(src, tick + (i * 1000), bl->id, 0, 0, NV_FIRSTAID, skill_lv, 0, 2); } break; }
-
You can change the requirements in the /re/db/skill_db.yml file. Either remove or change the `IsEnsemble` flag to false. - Id: 311 Name: BD_ROKISWEIL Description: Classical Pluck MaxLevel: 1 Type: Misc TargetType: Self DamageFlags: NoDamage: true Flags: IsEnsemble: true //Remove or change this flag Hit: Single HitCount: 1 SplashArea: 4 CastTime: 1000 Duration1: 30000 Duration2: 60000 Cooldown: 180000 Requires: SpCost: 180 Weapon: Musical: true Whip: true Status: RokisWeil CastCancel: false
-
Why newly installed ragnarok has error on windows 11 pro?
Hyllok replied to wazzzup02's question in Installation Support
What errors are being displayed? Can you provide more details about which client you are using, if you set up the Setup.exe/opensetup.exe correctly, and similar things? Without information, it's really hard to help. -
Requesting for a 2022 - 2025 emulator and client
Hyllok replied to Astro Young's question in General Support
I recommend you to check out @Sapito Sucio's awesome content!- 1 reply
-
- 1
-
-
[Showcase] Adventurers' Guild and more
Hyllok replied to Mikado X's topic in Maps & 3D Modeling Showcase
Nice job, man! Your maps could be part of original RO content, they really look good. Keep it up, I hope someday to achieve custom maps creation as you do. -
Amazing work, you nailed it! It must be a really fun event game to play.
-
Try deleting the dbghelp.dll (create a backup copy before doing it) — sometimes it happens to bug. You can also check if your GPU drivers/DirectX are properly installed and check updates on your OpenSetup.
-
Hey, have you tried changing the Graphics Device? Usually you should set your GPU as main device. I'm asking because the GPU is not set up properly in your screenshot. Also, try to run OpenSetup as administrator.
-
Hello there! I was wondering how to create (or clone & modify) a custom window within the client. For example, I have a random skill system in which the player gains a random skill every x levels. Instead of calling an NPC menu dialog with three random skill options, I'd like to call a custom window like the Auto Spell skill list. This is just an example, but I want to know how to do it generally. Also, I'm not sure if it is a source modification, hexing modification, or anything else. Thanks in advance!
-
How to add or use ACTOR_STATE Animations on Player Sprite NPC's?
Hyllok replied to Sathobi's question in Graphics Support
I'm not sure if I understood your request, but maybe this helps you out. prontera,150,150,4 script Test 491,{ mes "[NPC]"; mes "Watch me spiiiiiiiiiin~!"; specialeffect EF_CASTSPIN2; close; } -
I love it! It is such a cutie items and the art style fits really great in RO. Keep up the good work
-
It looks amazing, I love it.
-
Hi there, First, thank you for all the amazing work in making RO setup accessible for everyone! I followed the steps in the tutorial, but when I double-click the 'rAthena WSL' shortcut, the Terminal opens briefly and then immediately closes. Upon investigating, I noticed that the 'WSLLauncher.ps1' script is missing from the %AppData%\Roaming\froggostuff folder. Did I miss a step, or could this be an issue with the setup? Any advice would be greatly appreciated! Thanks in advance.
-
I've already gave you an example, but even so you don't get it, try reading documentation or using search feature. There is a lot of topics similar to yours, including using different solutions that you can choose to fit your needs. Examples:
-
Remove the option to run hexed with administrator
Hyllok replied to Kater's question in General Support
-
I'd recommend to use the Item Group DB to achieve what you want, just like Old Blue Box works, i.e. Choose or create a set if items in this file, it allows you to set different chance rates for every item in the IG. After setting this up, use it on your item's script like this: Script: | getgroupitem(IG_BlueBox); //here you insert your desired Item Group
-
Ajuda com verificação de Zeny em NPC!
Hyllok replied to Eragonat's question in Suporte ao Desenvolvimento
Existe uma variável no início do script, informando o valor máximo, você pode modificá-la para que fique de acordo com o que deseja e adicionar uma verificação do input do personagem ao depositar/sacar, comparando o valor com essa variável. Definindo o valor da variável: //=========================================== CONFIGURAÇÕES ============================================= set @cost,100000; //Custo para taxa de transação | 0 = Sem taxa. set .banqueiro$,"[...:::^0006D3Banqueiro ^008000Ragna^FF6600ERO^000000:::..]"; //Nome do NPC na conversa set .ZenyMax,2100000000; //Zeny máximo configurado do servidor. //======================================================================================================= Comparando o valor do depósito com a variável: input @deposit; if (@deposit < 1) { mes .banqueiro$; mes "Certifique-se de está depositando um valor real."; close; } else if (@deposit > Zeny) { mes .banqueiro$; mes "Me parece que você não tem o valor de zeny que está tentando depositar!"; close; } //Aqui faço a comparação else if (@deposit > .ZenyMax) { mes .banqueiro$; mes "Você só pode depositar até "+ callfunc("F_InsertComma",.ZenyMax) +"!"; close; } else if (@deposit > (Zeny - @cost)) { mes .banqueiro$; mes "Você precisa possuir ^008000"+@cost+"^000000 zeny(s) para cobrir a taxa de transação!"; close; } Faça o mesmo para o saque. -
Esse comando 'healhomun' não existe na documentação do rAthena. Se trata de um comando customizado que não está implementado no seu emulador, por isso ele não o reconhece.
-
Prontera RS (restart) - New Look!
Hyllok replied to K e o u g h's topic in Maps & 3D Modeling Showcase
Woooow, it looks amazing! Are you planning to release this map? -
Could you post your solution, please? I'm interested in this!
-
I found this brazilian channel, who teaches how to upscale. I think you will be fine just by watching the step-by-step, even if you don't understand the language. https://youtu.be/z0R80F_JgDE
-
Utility: All In One - Random Options Script
Hyllok replied to sader1992's topic in Utility Script Releases
Hello! How can I add an option to reroll a specific slot? The actual reroll system do this to all slots at once, and I would like to give the option to choose a certain slot to reroll. Thanks in advance. -
Random Skill System - Problems with blank skills
Hyllok replied to Hyllok's question in Scripting Support
Updating: I have solved this issue and developed a system that allow to reroll permanent skills, as they are commited in db only when the player logs off. prontera,156,189,4 script Nevasca 78,{ //Checando se as Skills Iniciais já foram confirmadas pelo jogador, se sim não permite prosseguir /* If(SkillsIniciais) { mes "[ Alita ]"; mes "Voce ja confimou suas skills iniciais!"; end; } */ //Iniciando o diálogo mes "[ Alita ]"; mes "Boas vindas ao Sistema Aleatorio de Skills!"; mes "Eu irei invocar ^FF0000 6 skills aleatorias^000000 para seu personagem."; mes "Essas skills serao ^0000FFpermanentes em seu personagem.^000000"; next; menu "Rolar as skills!",Roll,"Mais Informacoes",Info,"Cancelar",Sair; //Informacoes sobre o Sistema Randomico de Skills Info: mes "[ Alita ]"; mes "Nesse sistema, voce recebe 6 skills iniciais aleatorias de qualquer classe."; mes "As skills iniciam no nivel 1 e conforme seu personagem for evoluindo, voce recebe pontos para aprimora-las."; mes "Em certos niveis, voce recebe mais skills para utilizar."; close; end; //Sistema Randomico de Skills Roll: /* Removendo qualquer buff, skill ou ponto de skill antes de iniciar */ sc_end_class; ResetSkill; set SkillPoint,0; /* Setando o ID das skills com base no arquivo db/pre-re/skill_db.txt de cada uma das 6 rolagens */ setarray .@RandomSkill1[0],2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60; set .Random1, rand( getarraysize( .@RandomSkill1 ) ); setarray .@RandomSkill2[0],61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99; set .Random2, rand( getarraysize( .@RandomSkill2 ) ); setarray .@RandomSkill3[0],300,301,302,303,304,305; set .Random3, rand( getarraysize( .@RandomSkill3 ) ); setarray .@RandomSkill4[0],400,401,402,403,404,405; set .Random4, rand( getarraysize( .@RandomSkill4 ) ); setarray .@RandomSkill5[0],406,407,408,409,410,411; set .Random5, rand( getarraysize( .@RandomSkill5 ) ); setarray .@RandomSkill6[0],412,413,414,415,416,417; set .Random6, rand( getarraysize( .@RandomSkill6 ) ); /* Concedendo ao jogador as 6 skills aleatórias */ skill .@RandomSkill1[ .Random1 ],1,3; skill .@RandomSkill2[ .Random2 ],1,3; skill .@RandomSkill3[ .Random3 ],1,3; skill .@RandomSkill4[ .Random4 ],1,3; skill .@RandomSkill5[ .Random5 ],1,3; skill .@RandomSkill6[ .Random6 ],1,3; specialeffect2 104,0; next; /* Solicitando confirmação */ mes "[ Alita ]"; mes "ATENCAO!"; mes "Se houver ^008080menos de 6 skills^000000 na aba ETC de sua arvore de habilidades, ^FF0000NAO CONFIRME A ROLAGEM!^000000"; next; mes "[ Alita ]"; mes "^FF0000Apos a confirmacao, elas se tornarao permanentes em seu personagem.^000000"; mes "Deseja confirmar as skills?"; switch( prompt("Rolar Novamente:Confirmar Skills") ){ //Rolando novamente, apagando as skills anteriores Case 1: skill .@RandomSkill1[ .Random1 ],0,0; skill .@RandomSkill2[ .Random2 ],0,0; skill .@RandomSkill3[ .Random3 ],0,0; skill .@RandomSkill4[ .Random4 ],0,0; skill .@RandomSkill5[ .Random5 ],0,0; skill .@RandomSkill6[ .Random6 ],0,0; goto Roll; end; //Confirmando as skills Case 2: /* Previnindo abuso de rolagem após confirmação */ if( !SkillsIniciais ){ set SkillsIniciais,1; specialeffect2 68,0; next; mes "Skills confirmadas com sucesso!"; mes "Voce sera deslogado para finalizacao do processo!"; mes "Boa sorte em sua jornada, aventureiro."; atcommand "@kick " + strcharinfo(0); break; } //Previnindo abuso ao clicar no botão "Cancel", que possibilita o jogador não confirmar as skills e ainda possuí-las Case 255: sc_end_class; ResetSkill; set SkillPoint,0; skill .@RandomSkill1[ .Random1 ],0,0; skill .@RandomSkill2[ .Random2 ],0,0; skill .@RandomSkill3[ .Random3 ],0,0; skill .@RandomSkill4[ .Random4 ],0,0; skill .@RandomSkill5[ .Random5 ],0,0; skill .@RandomSkill6[ .Random6 ],0,0; specialeffect2 235,0; mes "[ Alita ]"; mes "Operacao Cancelada!"; break; } close; //Finalizando o diálogo Sair: mes "[ Alita ]"; mes "Adeus!"; close; end; } https://pastebin.com/raw/eLS60c0j Thank you all, this thread can be closed!