All Activity
- Today
-
Creating NPC UTILIZING || Does not work.
eloscar23 replied to eloscar23's topic in Script Discussion
Yes -
I made this script but I want normal users to be able to see the store but not be able to buy how do I modify it? //===== XeroxRO Script ======================================= //= Tienda VIP //===== Por: XEROX ========================================== //= Versión: 1.0 ============================================== prt_in,55,68,3 script Tienda VIP 757,{ if (!vip_status(VIP_STATUS_ACTIVE)) { mes "Lo siento, solo los usuarios VIP pueden acceder a esta tienda."; close; } mes "[Tienda VIP]"; mes "Hola Bienvenido a la tienda exclusiva para usuarios VIP. En que puedo ayudarte hoy"; switch (select("Comprar items:Vender items:Cancelar")) { case 1: callshop "vip_shop",1; end; case 2: callshop "vip_shop",2; end; case 3: mes "Gracias por visitar nuestra tienda VIP Vuelve pronto"; close; } } - shop vip_shop -1,40015:10000,40016:10000,40031:5000,40014:10000,40013:2000000
-
Known Bugs: Upon login when Homu and Merc is summon the default behavior of it is attack closest enemy. ( so aggressive xD ) When player have both Homu and Merc summon they will try to "attack" each other to get the closest position beside there owner. ( they are clingy AF ) Homu and Merc are affected by @speed command so be aware they can run very fast ... If you have found more bugs please report it ...
-
I made this script but I want normal users to be able to see the store but not be able to buy how do I modify it? //===== XeroxRO Script ======================================= //= Tienda VIP //===== Por: XEROX ========================================== //= Versión: 1.0 ============================================== prt_in,55,68,3 script Tienda VIP 757,{ if (!vip_status(VIP_STATUS_ACTIVE)) { mes "Lo siento, solo los usuarios VIP pueden acceder a esta tienda."; close; } mes "[Tienda VIP]"; mes "Hola Bienvenido a la tienda exclusiva para usuarios VIP. En que puedo ayudarte hoy"; switch (select("Comprar items:Vender items:Cancelar")) { case 1: callshop "vip_shop",1; end; case 2: callshop "vip_shop",2; end; case 3: mes "Gracias por visitar nuestra tienda VIP Vuelve pronto"; close; } } - shop vip_shop -1,40015:10000,40016:10000,40031:5000,40014:10000,40013:2000000
-
You will have to clean it and add it again, that diff that I published is updated with the last commit of today's rathena https://github.com/rathena/rathena/commit/49ba072f3a1779786e5666d2e2948fd0a5512abb
-
Hotkey:: Homu Alt + Right Click on Ground: goto that location and Attack closest monster on that ground Alt + Double Right Click on Monster: Attack that specific monster Alt + T: Attack closest monster or tell Homu todo nothing and follow player Alt + R: Information window Homu Merc Alt + Left Click on Ground: goto that location and Attack closest monster on that ground Alt + Double Left Click on Monster: Attack that specific monster Ctrl + T: Attack closest monster or tell Merc todo nothing and follow player Ctrl + R: Information window Merc Modification: ⊛ Full support for any Homu type ⊛ Full support for any Evolve Homu type (using @homevolution command) ⊛ Full support for any Homu S (Homunculus Mutation System) ⊛ Full support for Custom Homu (which you can add using Nemo or Warp) ⊛ Full support for Merc ⊛ Full support for Custom Merc ⊛ Does not require using /hoai (for homunculus) or /merai (for mercenaries) commands. ⊛ Homu and Merc will now follow player 1 block away (KRO default value is 3) ⊛ Homu and Merc will now comeback to beside player when 15 block away (rAthena default render distance is 14) ⊛ Homu and Merc will now do not protect owner. Homu and Merc will now prioritize attacking closest enemy to there location. (On KRO Homu and Merc will attack prioritize the monster that attack its owner) ⊛ Remove the function that Homu and Merc use to track/communicate to its current owner status(except for owner distance). This make Homu and Merc not dependent on owner in short allowing AFK farming. ⊛ Homu and Merc Patrol Mode function is remove. Refer to the list of hotkeys. Disclaimer:: By installing this modification you are allowing AFK farming on your server. I'm not responsible for any damage that it may cause. Aggressive AI Homu & Merc v1.rar
- 1 reply
-
- 2
-
-
script you can set if its 3v3 5v5 7v7 random team Blue team and Red team Battleground effect but you need to randomize the players to be putted if it is in red or blue and it is automated every 3hours and the event should be race to 3 points or can be edited according to our preferences and to have a point the other team must be wiped out If vip player receive more rewards If normal player receive default rewards if the player dies until its last member they will respawn in the side of the map. the map is bat_c01 and and with barricade in each corner automatic to drop after 10 seconds when the event start. all outside buffs must be removed / debuff
- Yesterday
-
agora deu esses erros tentei arrumar mas não deu
-
try check this on latest rathena https://github.com/rathena/rathena/blob/master/src/map/pc.cpp#L7289 /** * Check if we still have the correct weapon to continue the skill (actually status) * If not ending it * @param sd * @return 0:error, 1:check done */ static void pc_checkallowskill(struct map_session_data *sd) { const enum sc_type scw_list[] = { SC_TWOHANDQUICKEN, SC_ONEHAND, SC_AURABLADE, SC_PARRYING, SC_SPEARQUICKEN, SC_ADRENALINE, SC_ADRENALINE2, SC_DANCING, SC_GATLINGFEVER, }; uint8 i; nullpo_retv(sd); if(!sd->sc.count) return; for (i = 0; i < ARRAYLENGTH(scw_list); i++) { // Skills requiring specific weapon types if( scw_list[i] == SC_DANCING && !battle_config.dancing_weaponswitch_fix ) continue; if(sd->sc.data[scw_list[i]] && !pc_check_weapontype(sd,skill_get_weapontype(status_sc2skill(scw_list[i])))) status_change_end(&sd->bl, scw_list[i], INVALID_TIMER); } if(sd->sc.data[SC_SPURT] && sd->status.weapon) // Spurt requires bare hands (feet, in fact xD) status_change_end(&sd->bl, SC_SPURT, INVALID_TIMER); if(sd->status.shield <= 0) { // Skills requiring a shield const enum sc_type scs_list[] = { SC_AUTOGUARD, SC_DEFENDER, SC_REFLECTSHIELD, SC_REFLECTDAMAGE }; for (i = 0; i < ARRAYLENGTH(scs_list); i++) if(sd->sc.data[scs_list[i]]) status_change_end(&sd->bl, scs_list[i], INVALID_TIMER); } }
-
Hyroshima donated to a project: April Funding
-
The freedom to choose future business development solutions is only in your hands. You don't need to look for anyone else when it comes to a serious project. apps built with angular develop, support, and truly guarantee results. Web app tech stack the future is already close to you, so do not waste your time, but write...
-
How to make shopping in a foreign country more profitable? Essentially easy, if you turn to the service travel map. The site offers to consider the stores with the best prices, so you can save! In addition, you can use the form to search for interesting places in the selected city. It's very fast and convenient.
-
Your post is so well-researched and thoughtfully written. It's clear that you're a true expert on this.
-
Your post is so informative and well-researched. It's clear that you've put a lot of time and effort into this topic.
-
I think your post is going to have a real impact on people. It's such an important message and you've conveyed it so effectively.
-
Your post has given me a lot to think about. I'm excited to continue exploring this topic and learning more.
-
It's not in the item description of a non-tradable item. I think it's kinda flag for non-tradable items that I have to remove the item that I want to remove the label. But I just can't find it
-
checked your zeny?
-
Uma Removedora de Cartas Configurável
AdrianoGC replied to Israel's topic in Suporte a Configurações
Substitua a linha por: for (set .i, 0; .i < getarraysize(.cartas_proibidas); set .i, .i+1) { // Loop para checar todas as cartas proibidas -
Thsnks Emistry, i will try it Edit: Working as i want, thanks again @Emistry
-
use this https://github.com/rathena/rathena/pull/7394
-
[Pic] How to Edit "Item moves restriction"
Emistry replied to gangmusic's question in General Support
find them in the file and remove it?