-
Posts
758 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by AinsLord
-
so i create a script for a map that can be accessed only for the guild who conquers specific castle i actually did it however i tried to like 1. when agit/woe starts the NPC will tell you that the "Woe is currently active you can't enter now" what is actually happen is the NPC is just unclickable or no response 2. when woe/agit starts all of the guildmembers will be warped to save point what is actually happens is the characters still stay inside the map here is the script if (!agitcheck() && !agitcheck2() && !agitcheck3()) { // Check for agit active mes "Woe is currently active can't enter right now"; // NPC message when woe is active mapwarp .map$, "prontera",149,138; // Map of the savepoint .@gid = GetCastleData("prtg_cas01",1); // Castle Map Name and castle data if (getcharid(2) == .@gid){ mes "You will be warped to Lost Midgard"; next; warp "goldroom.gat",0,0; dispbottom "[Guild Message]: Welcome to Lost Midgard"; } else { mes "[Lost Midgard Guardian]"; mes "Your Guild did not conquer Krimhild Castle"; dispbottom "[Guild Message]: Only Guild who owns Kriemhild can enter here!"; } } end; } thanks in advance i know that there are some codes missing however i just dunno what is it thanks again EDIT: i tried this one it has no errors but players inside the map are no being kicked or warped out if (!agitcheck() && !agitcheck2() && !agitcheck3()) { // Check for agit active mes "Woe is currently active can't enter right now"; // NPC message when woe is active atcommand "@kickall"; // Map of the savepoint .@gid = GetCastleData("prtg_cas01",1); // Castle Map Name and castle data if (getcharid(2) == .@gid){ mes "You will be warped to Lost Midgard"; next; warp "goldroom.gat",0,0; dispbottom "[Guild Message]: Welcome to Lost Midgard"; } else { mes "[Lost Midgard Guardian]"; mes "Your Guild did not conquer Krimhild Castle"; dispbottom "[Guild Message]: Only Guild who owns Kriemhild can enter here!"; } } end; } thanks again
-
well i dunno if this was requested here but as i remember there is a script that gives specific map for a guild castle holder for ex: castle 1 guild holder have the access for the specific map only guild master/members can enter the map and if the guild member leave the guild while inside the map that player will be teleported back to save point thanks in advance again ?
-
[Error]: [GuildID: 2 / World: "Servername"] Not found in table i have this kind of error in my console i just changed server name in char_athena.conf then this shows any fix for this? thanks in advance PS: fixed i just relog and reupload the emblem again im using 2021 client
-
is there like a corrected palettes for 4th jobs? or just modify and edit the palettes that can be download here? thanks in advance
-
Release: Soul Link Modification - Script-based
AinsLord replied to Secrets's topic in Source Releases
thanks ? appreciated -
-
Release: Soul Link Modification - Script-based
AinsLord replied to Secrets's topic in Source Releases
hi sir its working fine however when i need to edit the soul_link_db.yml i need to reboot the whole server its not included in reloaditemdb -
-
question po mga sir pwd paba mag install ng VNC viewer kahit may naka install na na Emulator?
-
so ive been looking here quite a while then i found thi so i followed the steps it actually lead me here got this error wit this code if(sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_SAGE && status_isimmune(bl) && !tsc->data[SC_HERMODE] && rnd()%100 < 70 || status_isimmune(bl) && !(sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_SAGE) ){ if (sd) clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); break; so i edit it with this code if(sc && tsc->data[SC_SPIRIT] && tsc->data[SC_SPIRIT]->val2 == SL_SAGE && status_isimmune(bl) && !tsc->data[SC_HERMODE] && rnd()%100 < 70 || status_isimmune(bl) && !(sc && tsc->data[SC_SPIRIT] && tsc->data[SC_SPIRIT]->val2 == SL_SAGE) ){ if (sd) clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); break; and almost the same error so i edit it again with this if(sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_SAGE && status_isimmune(bl) && !tsc->data[SC_HERMODE] && rnd()%100 < 70 || status_isimmune(bl) && !(sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_SAGE) ){ if (sd) clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); break; } got this kind of error probably progress then i try to modify it again with this if(sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_SAGE && status_isimmune(bl) && !tsc->getSCE(SC_HERMODE) && rnd()%100 < 70 || status_isimmune(bl) && !(sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_SAGE) ){ if (sd) clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); break; so this code doesnt have any errors or warning i compiled perfectly i just wanna share this to those who are using latest git of rathena working as of 4/30/2023 git 84bf6b8 dont know where to post this so i post it here in src support thread so here is the complete details in skill.cpp find this struct status_change_entry *tsce; and insert this below just remove the "+" sign + struct status_change *sc = status_get_sc(src); then look for this case SA_DISPELL: Find this line if(status_isimmune(bl)) Change to this if(sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_SAGE && status_isimmune(bl) && !tsc->getSCE(SC_HERMODE) && rnd()%100 < 70 || status_isimmune(bl) && !(sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_SAGE) ){ if (sd) clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); break; then recompile i hope this can help PS: just move my post to the correct thread if i posted in the incorrect one thanks Ymir's Ragnarok Test 2023-04-30 01-19-47.mp4 dont for get to "upvote" if its helps thank you
-
so i tried to increase the inventory capacity i did diff like 200 cap it shows however it stills carry 100/100 items doesnt exceed to or reach even 101 ive checked src file i dunno what to edit there can i anyone help me? PS: this is the mmo.hpp #if PACKETVER_MAIN_NUM >= 20190522 || PACKETVER_RE_NUM >= 20190508 || PACKETVER_ZERO_NUM >= 20190605 #define MAX_HOTKEYS_DB ((MAX_HOTKEYS) * 2) #else #define MAX_HOTKEYS_DB MAX_HOTKEYS #endif #define MAX_MAP_PER_SERVER 1500 /// Maximum amount of maps available on a server #ifndef INVENTORY_BASE_SIZE #define INVENTORY_BASE_SIZE 150 // Amount of inventory slots each player has #endif #ifndef INVENTORY_EXPANSION_SIZE #if PACKETVER_MAIN_NUM >= 20181031 || PACKETVER_RE_NUM >= 20181031 || PACKETVER_ZERO_NUM >= 20181114 #define INVENTORY_EXPANSION_SIZE 100 // Amount of additional inventory slots a player can have #else #define INVENTORY_EXPANSION_SIZE 0 #endif #endif #ifndef MAX_INVENTORY #define MAX_INVENTORY ( INVENTORY_BASE_SIZE + INVENTORY_EXPANSION_SIZE ) // Maximum items in player inventory (in total) #else #if MAX_INVENTORY < ( INVENTORY_BASE_SIZE + INVENTORY_EXPANSION_SIZE ) #error Your custom MAX_INVENTORY define is too low #endif #endif i tried 150 still cant thanks
-
2021 client getquestinfobyID error in client
AinsLord replied to AinsLord's question in Client-side Support
thanks ill try this -
i tried to look for a solution regarding this problem seems i can find any tried to copy what in zack file still error any other solution? error in ET instance and Nydhoggur PS: i tried this one still have the same error i did diff my client whit those lub files stil have the same problem thanks in advance
-
is there a way like to remove the defense bonus when refining an item i tried to check the refine_db.yml and remove the bonus line still got like 1 def bonus for +1 thanks in advance
-
Client Close when click item link in the description
AinsLord replied to AinsLord's question in Client-side Support
i see thats why coz im using 20211117 client i dunno if 2022 clients are stable -
Client Close when click item link in the description
AinsLord posted a question in Client-side Support
as the title says so i tried to have like an item link in the description it self <ITEM>Red Potion<INFO>501</INFO></ITEM> like that when i click the link client close what seems to be the problem? -
is there like source mod or script that works like "reboud shield" of imperial guard which reduce damage receive from devotion? will it be like item bonus script? thanks for answer
-
does this still works in latest rA git?
-
so i made an custom box for armors however when i opened the box the item is unidentified is there a way that item is already identified upon opening the box im using the latest rathena git TIA
-
is it possible that the reduce HP of union skill will be carried by devotion? coz i think i played a server where SG with Union skill instead of him getting the damage its the paladin TIA PS: im using 2021 client
-
ill try thanks
-
i dont think this will be fixed my extended vending unless i get fresh src again and manually add it im using this diff ExtendedVending_[Rev8].diff ExtendedVending_[Rev9].diff
-
in what src file should i edit this lines thanks EDIT: i modified skill.cpp after opening the veding skill and close it map server crashed and DCed /** * Extended Vending system [Lilith] **/ int skill_vending(struct map_session_data *sd, t_itemid nameid) { std::shared_ptr<item_data> item; char output[1024]; nullpo_ret(sd); if (!pc_can_give_items(sd) || item_db.find(nameid)) { sd->state.prevend = 0; sd->vend_loot = 0; sd->state.workinprogress = WIP_DISABLE_NONE; clif_skill_fail(sd, MC_VENDING, USESKILL_FAIL_LEVEL, 0); } else { sd->vend_loot = nameid; sd->state.prevend = 1; clif_openvendingreq(sd, 2 + sd->vend_lvl); sprintf(output, msg_txt(sd, 1594), item->ename.c_str()); clif_messagecolor(&sd->bl, color_table[COLOR_CYAN], output, false, SELF); } return 0; its exactly the same as yours
-
does this barter system auto refill the item? like the limited stock of 50 will replenish? #TIA