Jump to content

Break

Members
  • Posts

    153
  • Joined

  • Last visited

  • Days Won

    1

Break last won the day on March 10 2018

Break had the most liked content!

About Break

  • Birthday 02/14/1992

Profile Information

  • Gender
    Male
  • Location
    Russia
  • Server
    SkyRO
  • Discord: Break#0617
  • Interests
    Web, Ragnarok

Contact Methods

Recent Profile Visitors

6094 profile views

Break's Achievements

Santa Poring

Santa Poring (3/15)

  • Conversation Starter
  • First Post
  • Collaborator
  • Dedicated
  • Week One Done

Recent Badges

14

Reputation

  1. Ranking system not have all sql tables and func check_bg_get_rank don't work Need change callfunc "check_bg_get_rank",.@map$,convertpcinfo(.@killedrid,CPC_CHAR); to callfunc "check_bg_get_rank", strcharinfo(3), convertpcinfo(killedrid,CPC_CHAR); bgextended.sql
  2. At battleground locations, client version 2018-06-21aRagexeRE, the attack cursor appears randomly when hovering over a character, / ns does not work, only if you hold down the shift manually. How to fix it?
  3. That was not the problem. The solution was like this: I have a built-in RCX mod on my server, but it is not yet available in the new client. The server itself was sending an unknown packet to the client, hence the failure. The problem has been resolved.
  4. After loading the character, the client closes without any errors, and this also does not always happen and after one or two. There are no errors in the console [Status]: Using packet version: 20180621. [Status]: Packet Obfuscation: Disabled. clientinfo.xml <version>55</version> CDClient.dll from the Input folder of the nemo patcher Data/lua from https://github.com/zackdreaver/ROenglishRE List of patches in attachment Please help me solve the problem, dear experts. 2018-06-21aRagexeRE_patched.exe.log
  5. Try... @somer14 Open ../src/common/mmo.hpp Search: struct mmo_charstatus { After add: unsigned int lock_id;
  6. I do not know my version of rathena, I downloaded it in an archive in December 2018 and I still make all the changes myself. Server crashed due to getmapxy script command. Need to replace BL_PC on UNITTYPE_PC. And remove lines from convertpcinfo. After these manipulations, the event works.
  7. (12/18/2020 00:34:28) [ Error ] : npc_enable: Attempted to hide a non-existing NPC 'ticO1' (flag=4). (12/18/2020 00:34:28) [ Error ] : npc_enable: Attempted to hide a non-existing NPC 'ticX1' (flag=4). (12/18/2020 00:35:28) [ Error ] : Server received crash signal! Attempting to save all online characters!
  8. Only for eAmod/rAmod or you can add this mod https://github.com/sanasol/sanasol/tree/master/paid_addons/woe_stats_rev2
  9. How to disable RODEX for example in GvG / PvP maps?
  10. Pending approval updates, please wait.
  11. Can you make a command that hides messages from @autostore?
  12. If the slot occupied, then you can replace it with another option Need help with this script function function script item_option { disable_items; setarray .@eq[1], EQI_HEAD_TOP,EQI_ARMOR,EQI_HAND_L,EQI_HAND_R,EQI_GARMENT,EQI_SHOES,EQI_ACC_L,EQI_ACC_R,EQI_HEAD_MID,EQI_HEAD_LOW; .@sz = getarraysize(.@eq); // Reduce getarraysize calls [Secret] for(.@i = 1; .@i < .@sz; ++.@i){ if(getequipisequiped(.@eq[.@i])){ .@menu$ = .@menu$ + F_getpositionname(.@eq[.@i]) + " ~ [ " + getequipname(.@eq[.@i]) + " ]"; .@equipped = 1; } .@menu$ = .@menu$ + ":"; } if (.@equipped == 0) { message strcharinfo(0), "I don’t think I can improve the items you have..."; getitem 6027,1; end; } .@part = .@eq[prompt(.@menu$)]; if (!getequipisequiped(.@part)) { message strcharinfo(0), "You canceled the action."; getitem 6027,1; end; } mes "[ Select Item Option ]"," "; mes "Please indicate option number","which you want to apply."; mes "See list in chat :"; dispbottom "-------------------------"; dispbottom "#3 : Str"; dispbottom "#4 : Agi"; dispbottom "#5 : Vit"; dispbottom "#6 : Int"; dispbottom "#7 : Dex"; dispbottom "#8 : Luk"; dispbottom "#9 : MaxHPrate"; dispbottom "#10 : MaxSPrate"; dispbottom "#13 : AtkRate"; dispbottom "#14 : MatkRate"; dispbottom "#25 : Sub Neutral"; dispbottom "#35 : Sub Ele_All"; dispbottom "#94 : SubRace Player"; dispbottom "#185: UnbreakableWeapon"; dispbottom "#186: UnbreakableArmor"; dispbottom "-------------------------"; next; input .@opt; if(.@opt == 0){ message strcharinfo(0), "There is no such option."; getitem 6027,1; end; } mes "[ Select Item Option ]"," "; mes "Selected Option Type : " + .@opt; //mes " "; //mes "Please indicate the value you want to apply."; //next; //input .@val; mes " "; mes "Please indicate the slot where you want to insert the option [1-4]"; next; input .@idx_real; if(.@idx_real == 0){ message strcharinfo(0), "This is not a slot."; getitem 6027,1; end; } set .@idx,.@idx_real-1; if(getequiprandomoption(.@part, .@idx, ROA_ID, getcharid(0))){ if(.@idx > 3) { mes "[ Select Item Option ]"; message strcharinfo(0), "No free slot."; getitem 6027,1; end; } } mes "[ Select Item Option ]"," "; mes "Selected :"; mes "^6A01A1"+.@opt+"^000000 Type"; //mes "^B91E1E"+.@val+"^000000 Value"; mes "^0C9610"+.@idx_real+"^000000 Slot"; close2; setrandomoption(.@part,.@idx,.@opt,1,.@idx,getcharid(0)); end; } Up
  13. We need a function so that when using an item, you can select a equip, select an option from the array and specify the occupied slot. Who can help with this?
×
×
  • Create New...