

Screwdriver
Members-
Posts
52 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Screwdriver
-
Storage - Weapon, Armor tabs inverted.
Screwdriver replied to Screwdriver's question in Client-side Support
Well, I decided to change my itemtypes again.. I set my armors to 5, weapons to 4. This fixed my problem, thanks. -
Ice Pick is in 'Armor', but Helms are in 'Weapon'.. I tried swapping the two tabs in my msgstringtable, but that didn't accomplish anything. CLIENT - 2012-04-10aRagexeRE_J I found this code from Google search into src/map/clif.c, however the items would go into the same tabs, but if I closed and re opened storage they'd be in the correct tabs. Just trying to be a perfectionist here.. I'd rather a complete fix rather than this partial, having to reopen storage, fix. static inline int itemtype(int type) { switch (type) { case IT_ARMOR: return IT_WEAPON; case IT_WEAPON: return IT_ARMOR; case IT_PETEGG: return IT_WEAPON; default: return type; } //return ( type == IT_PETEGG ) ? IT_WEAPON : type; } If anything is needed to help completely fix this issue, please let me know and I'll be glad to try and help. ~ Thank you! /Edit : My itemtypes are all set correctly. Weapons = 5, Armor = 4..
-
/Edit Solved. Changed clientinfo.xml to lan 192.x.x.x instead of WLAN.
-
How could I remove the warps to the castles that aren't running, but enable them when they're running? AgitStart enables all castles, so how could I enable just one castle, while keeping others disabled? If you don't allow the people go in to the castle you don't need to disable the castles o,o How'd you disable the warps to the castle? o_o Disable the warps for one woe, but enable them on the next woe.. Making any sense? Do you want just disable the warps for woe? o,O I'm not sure if I could disable the warps, considering I use every region for woe.. I'd have to disable Geffen warps for one woe, but enable it second woe? I'm not sure if this is making sense to anyone
-
How could I remove the warps to the castles that aren't running, but enable them when they're running? AgitStart enables all castles, so how could I enable just one castle, while keeping others disabled? If you don't allow the people go in to the castle you don't need to disable the castles o,o How'd you disable the warps to the castle? o_o Disable the warps for one woe, but enable them on the next woe.. Making any sense?
-
How could I remove the warps to the castles that aren't running, but enable them when they're running? AgitStart enables all castles, so how could I enable just one castle, while keeping others disabled?
-
scripts_guild.CONF; // ----------------------- War of Emperium ---------------------- // - Guild WoE time settings npc: npc/guild/ToastyWoE.txt // - Guild NPC Template file npc: npc/guild/agit_main.txt Every castle spawns an emp and is able to be taken. On restart/start up MapServer says; AgitStart2 isn't supposed to be running either.. Only Kriemhild is supposed to be running. Could anyone help me with this? /EDIT: Well, I managed to get it partly working. Only problem I'm having now is I have to "@reloadscript" for the other castles to turn off. When I restart the server, every castle is running. How could I fix this? Thank you
-
This may seem as an idiotic question, but I'll proceed either way. I've tried running one woe castle (Kriemhild); It runs correctly, but all the other castles do as well; Fadh - Alde - Rothenburg; How could I stop all castles from running during the time Kriemhild is running? I'm using Toasty's WoE controller.
-
I'm using Toasty's WoE Controller, and for "AgitStart" the emps won't show in the castles, but "AgitStart2" the emps will show. Top - Swanhild (AgitStart) Bottom - Cyr (AgitStart2) Script: //====================================================================================================== //= Toasty's WoE Controller (formerly WoE Info Banner) - script WoEInfoBase -1,{ OnStartMenu: if(.init == 0) donpcevent strnpcinfo(3)+"::OnInit"; OnStartMenu2: mes "The " + ((.state)?"^00DD00current":"^DD0000next") + "^000000 WoE session is: "; mes " "; mes "Day: ^0000DD" + .daysOfWeek$[.woe_day[.woe_index]]; mes "^000000Start time: ^00DD00" + .woe_0_str$[.woe_index]; mes "^000000End time: ^DD0000" + .woe_1_str$[.woe_index]; mes "^000000Region:"; set .@state_strs$, ".woe_state_str_" + .woe_state[.woe_index] + "$"; for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) { set .@output$, getd(.@state_strs$ + "[" + .@i + "]"); if(.@output$ != "") mes "^000000- ^0000DD" + .@output$; } next; if(getgmlevel() >= .gm_access) select( "Warp to Castle Grounds", "View Castle Owners", "View all WoE times", ((!.state)?"Start next WoE":"End current WoE"), ((.state)?"":"Skip next WoE session") ); else select( "Warp to Castle Grounds", "View Castle Owners", "View all WoE times"); switch(@menu) { case 1: //warp mes "Which region would you like to warp to?"; next; select(.region_warp$[.woe_state[.woe_index]]); if(@menu < 1 || @menu > .num_regions) close; close2; warp .region_maps$[@menu - 1], .region_x[@menu - 1], .region_y[@menu - 1]; end; case 2: //view set .@woe_state_array$, ".woe_state_" + .woe_state[.woe_index]; for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) { set .@k, 0; set .@castles$, ".castles_" + .regions$[.@i] + "$"; set .@castle_check, getd(.@woe_state_array$ + "[" + .@i + "]"); while(.@castle_check && .@k < .num_castles[.@i]) { if(.@castle_check & (1 << .@k)) { set .@map$, getd(.@castles$+"["+.@k+"]"); if (GetCastleData(.@map$,1)) { dispbottom "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently held by the [" + GetGuildName(GetCastleData(.@map$,1)) + "] guild."; } else { dispbottom "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently unoccupied."; } set .@castle_check, .@castle_check - (1 << .@k); } set .@k, .@k + 1; } } break; case 3: //woe times for(set .@i, 0; .@i < .num_woes; set .@i, .@i + 1) { dispbottom "- " + .daysOfWeek$[.woe_day[.@i]] + " " + .woe_0_str$[.@i] + "-" + .woe_1_str$[.@i]; set .@woe_state_str_array$, ".woe_state_str_" + .woe_state[.@i] + "$"; for(set .@k, 0; .@k < .num_regions; set .@k, .@k + 1) { set .@output$, getd(.@woe_state_str_array$ + "[" + .@k + "]"); if(.@output$ != "") dispbottom " " + .@output$; } } break; case 4: //start next; if(getgmlevel() <.gm_access) close; mes "^FF0000Are you sure you want to " + ((!.state)?"start the next WoE session?":"end the current WoE session?"); next; if(select("Yes:No") == 2) break; set .remainTime, 0; //might not work sometimes...you have like a 500ms window out of 505ms i guess.. sleep2 .timer_refresh_rate; //wait abit so the menu doesn't screw up (how long it takes for the timer to update) break; case 5: //skip next; if(getgmlevel() <.gm_access || .state) close; mes "^FF0000Are you sure you want to skip the next WoE session^000000"; next; if(select("Yes:No") == 2) break; if(.state) { //you really can't do this with woe active next; mes "Sorry, in the time you took making your decision, WoE started"; mes "Please either manually end it first or wait"; break; } set .woe_index, (.woe_index + 1) % .num_woes; donpcevent strnpcinfo(3)+"::OnUpdateCountTick"; sleep2 .timer_refresh_rate; break; default: close; } goto OnStartMenu2; OnInit: //-----------------------------------------------------------------------------------------// //CONFIG START // //-----------------------------------------------------------------------------------------// set .gm_access, 60; //WoE timings needs to be ordered ascendingly unless you want to do weird //stuff like skip a region every other week or so... //Also times can't overlap. Uses second of day(gettimetick(1)) for timing // eg 1am -> 3600, 2:30pm -> 52200, midnight -> 86400 (anything past that doesn't work) //Note: woe_0 is start times, woe_1 is end times. Ignore how it's called but // don't change it either since it's dynamically used // Also..woe has to end on the same day it starts (it's easier that way..) setarray .woe_day[0], 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6; setarray .woe_0[0], 0,18000,25800,61200,69000, 0,18000,25800,61200,69000, 0,18000,25800,61200,69000, 0,18000,25800,61200,69000, 0,18000,25800,61200,69000, 0,18000,25800,61200,69000, 0,18000,25800,61200,69000; setarray .woe_1[0], 17400,25200,60600,68400,86340,17400,25200,60600,68400,86340,17400,25200,60600,68400,86340,17400,25200,60600,68400,86340,17400,25200,60600,68400,86340,17400,25200,60600,68400,86340,17400,25200,60600,68400,86340; setarray .woe_state[0], 0, 1, 0, 2, 0, 0, 1, 0, 2, 0, 0, 1, 0, 2, 0, 0, 1, 0, 2, 0, 0, 1, 0, 2, 0, 0, 1, 0, 2, 0, 0, 1, 0, 2, 0; //WoE state settings. Every WoE session can be defined as a particular state of castle configuration. //.woe_state_#[%] = $ // # - state number // % - region number // $ - binary representation of castles that are active for that region in that state ( // (ie. 0 is no castles, 5 is castle 0 and 2 (2^0 + 2^2 = 5)) setarray .woe_state_0[0],1,0,0,0,0,0,0; setarray .woe_state_1[0],0,31,31,0,0,31,0; setarray .woe_state_2[0],30,0,0,31,31,0,0; //Setting for if script handles WoE controller function. Disable agit_controller.txt if you are using this. //For if you want to use something else to handle your woe stuff but only this script //to show info (1 - on, 0 - off...duh) set .active_woe, 1; //WoE inactive on map notifier. Basically notifies player if the castle they are entering is //WoE active or not set .notify_woe, 1; //-----------------------------------------------------------------------------------------// //CONFIG END // //-----------------------------------------------------------------------------------------// //-----------------------------------------------------------------------------------------// //CONSTANTS START - Don't touch this unless you know what you are doing // //-----------------------------------------------------------------------------------------// //castle maps by region setarray .castles_prtg$[0],"prtg_cas01","prtg_cas02","prtg_cas03","prtg_cas04","prtg_cas05"; setarray .castles_payg$[0],"payg_cas01","payg_cas02","payg_cas03","payg_cas04","payg_cas05"; setarray .castles_gefg$[0],"gefg_cas01","gefg_cas02","gefg_cas03","gefg_cas04","gefg_cas05"; setarray .castles_aldeg$[0],"aldeg_cas01","aldeg_cas02","aldeg_cas03","aldeg_cas04","aldeg_cas05"; setarray .castles_arug$[0],"arug_cas01","arug_cas02","arug_cas03","arug_cas04","arug_cas05"; setarray .castles_schg$[0],"schg_cas01","schg_cas02","schg_cas03","schg_cas04","schg_cas05"; setarray .castles_novi$[0],"nguild_alde","nguild_gef","nguild_pay","nguild_prt"; //woe kill functions for each castle setarray .woe_kill_prtg$[0],"Agit#prtg_cas01::OnAgitEnd","Agit#prtg_cas02::OnAgitEnd","Agit#prtg_cas03::OnAgitEnd","Agit#prtg_cas04::OnAgitEnd","Agit#prtg_cas05::OnAgitEnd"; setarray .woe_kill_payg$[0],"Agit#payg_cas01::OnAgitEnd","Agit#payg_cas02::OnAgitEnd","Agit#payg_cas03::OnAgitEnd","Agit#payg_cas04::OnAgitEnd","Agit#payg_cas05::OnAgitEnd"; setarray .woe_kill_gefg$[0],"Agit#gefg_cas01::OnAgitEnd","Agit#gefg_cas02::OnAgitEnd","Agit#gefg_cas03::OnAgitEnd","Agit#gefg_cas04::OnAgitEnd","Agit#gefg_cas05::OnAgitEnd"; setarray .woe_kill_aldeg$[0],"Agit#aldeg_cas01::OnAgitEnd","Agit#aldeg_cas02::OnAgitEnd","Agit#aldeg_cas03::OnAgitEnd","Agit#aldeg_cas04::OnAgitEnd","Agit#aldeg_cas05::OnAgitEnd"; setarray .woe_kill_arug$[0],"Manager#arug_cas01::OnAgitEnd2","Manager#arug_cas02::OnAgitEnd2","Manager#arug_cas03::OnAgitEnd2","Manager#arug_cas04::OnAgitEnd2","Manager#arug_cas05::OnAgitEnd2"; setarray .woe_kill_schg$[0],"Manager#schg_cas01::OnAgitEnd2","Manager#schg_cas02::OnAgitEnd2","Manager#schg_cas03::OnAgitEnd2","Manager#schg_cas04::OnAgitEnd2","Manager#schg_cas05::OnAgitEnd2"; // setarray .woe_kill_novi$[0],"Agit_N01::OnAgitEnd","Agit_N02::OnAgitEnd","Agit_N03::OnAgitEnd","Agit_N04::OnAgitEnd"; //region prefixs setarray .regions$[0],"prtg","payg","gefg","aldeg","arug","schg","novi"; //region info setarray .region_names$[0],"Prontera", "Payon", "Geffen", "Aldebaran", "Arunafeltz", "Schwarzwald", "Novice Castles"; setarray .region_maps$[0],"prt_gld", "pay_gld", "gef_fild13", "alde_gld", "aru_gld", "sch_gld", "prontera"; //coords to warp player to region (0 is random) setarray .region_x[0],0, 0, 0, 0, 0, 0, 148; setarray .region_y[0],0, 0, 0, 0, 0, 0, 163; setarray .waitMsg$[0], "WoE Starts: ", "WoE Ends: "; setarray .startMsg$[0], "WoE is Starting", "WoE is Ending"; set .ticks_in_day, 86400; //mmm...magic numbers setarray .daysOfWeek$[0], "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"; set .timer_refresh_rate, 500; //how many ms per timer refresh...keep less than 1000 (in milliseconds) set .change_state_sleep, 3000; //how long to show "WoE is Start|End-ing" msg for in ms. (in milliseconds) //Make sure WoE sessions are longer than this xD set .banner_refresh_rate, 1; //how many seconds per banner refresh...keep 1 or above (in seconds) //-----------------------------------------------------------------------------------------// //CONSTANTS END // //-----------------------------------------------------------------------------------------// set .num_regions, getarraysize(.regions$); set .num_woes, getarraysize(.woe_1); //force WoE to end if active callfunc "WoEToggler", 0; for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) { //count num castles per region set .num_castles[.@i], getarraysize(getd(".castles_" + .regions$[.@i] + "$")); } //convert timestamps to readable format for(set .@i, 0; .@i < .num_woes; set .@i, .@i + 1) { set .@hrs, .woe_0[.@i] / 3600; set .@mins, .woe_0[.@i] % 3600 / 60; set .@output$, ((.@hrs % 12)?.@hrs:12) + ":" + ((.@mins < 10)?"0"+.@mins:.@mins) + " " + ((.@hrs > 12)?"PM":"AM"); set .woe_0_str$[.@i], .@output$; set .@hrs, .woe_1[.@i] / 3600; set .@mins, .woe_1[.@i] % 3600 / 60; set .@output$, ((.@hrs % 12)?.@hrs:12) + ":" + ((.@mins < 10)?"0"+.@mins:.@mins) + " " + ((.@hrs > 12)?"PM":"AM"); set .woe_1_str$[.@i], .@output$; } //calc number of woe states and consolidate states to create list of castles used set .num_states, 0; while(getarraysize(getd(".woe_state_" + (.num_states)))) { set .@state$, ".woe_state_" + .num_states; set .@i, 0; while(.@i < getarraysize(getd(.@state$))) { set .castleUsage[.@i], .castleUsage[.@i] | getd(.@state$ + "[" + .@i + "]"); set .@i, .@i + 1; } set .num_states, .num_states + 1; } for(set .@i, 0; .@i < .num_states; set .@i, .@i + 1) { set .@woe_state_array$, ".woe_state_" + .@i; for(set .@k, 0; .@k < .num_regions; set .@k, .@k + 1) { if(.castleUsage[.@k] > 0) { set .@castles$, ".castles_" + .regions$[.@k] + "$"; set .@castle_check, getd(.@woe_state_array$ + "[" + .@k + "]"); if(.@castle_check == 0) { //region not in this state //region warp menu string set .region_warp$[.@i], .region_warp$[.@i] + "^DD0000" + .region_names$[.@k] + "^000000:"; continue; } else { if(.@castle_check >= ((1 << .num_castles[.@k]) - 1)) { //includes all castles...just list as region. setd(".woe_state_str_" + .@i + "$[" + .@k + "]", .region_names$[.@k]); //region warp menu string set .region_warp$[.@i], .region_warp$[.@i] + "^00DD00" + .region_names$[.@k] + "^000000:"; } else { set .@j, 0; set .@output$, ""; while(.@j < .num_castles[.@k]) { if(.@castle_check & (1 << .@j)) { set .@output$, .@output$ + GetCastleName(getd(.@castles$+"["+.@j+"]")); set .@castle_check, .@castle_check - (1 << .@j); if(.@castle_check) { if(.@output$ != "") set .@output$, .@output$ + ", "; } else break; } set .@j, .@j + 1; } setd(".woe_state_str_" + .@i + "$[" + .@k + "]", .region_names$[.@k] + " ("+ .@output$ + ")"); //region warp menu string set .region_warp$[.@i], .region_warp$[.@i] + "^00DD00" + .region_names$[.@k] + " ("+ .@output$ + ")^000000:"; } } } else { set .region_warp$[.@i], .region_warp$[.@i] + ":"; } } } donpcevent strnpcinfo(3)+"::OnFindCurIndex"; donpcevent strnpcinfo(3)+"::OnUpdateCountTick"; if(.active_woe) { if(.notify_woe) { //set mapflag for all castle maps for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) { set .@region_array$, ".castles_" + .regions$[.@i] + "$"; for(set .@k, 0; .@k < .num_castles[.@i]; set .@k, .@k + 1) { setmapflag getd(.@region_array$ + "[" + .@k + "]"), mf_loadevent; setd(".loadmap_region_" + getd(.@region_array$ + "[" + .@k + "]"), .@i + 1); setd(".loadmap_castleIndex_" + getd(.@region_array$ + "[" + .@k + "]"), .@k); } } } //activates WoE if needed donpcevent strnpcinfo(3)+"::OnDoWoE"; } //flag that init occured set .init, 1; OnWoETimer: //timer stuff while (1) { set .remainTime, .count_tick - gettimetick(2); set .bannerTimer, .remainTime - (.remainTime % .banner_refresh_rate) + .banner_refresh_rate; set .min, .bannerTimer / 60; set .sec, .bannerTimer - .min * 60; set .hr, .min / 60; set .min, .min - .hr * 60; set .roomMsg$, .waitMsg$[.state] + .hr + ":" + ((.min < 10 )?"0":"") + .min + ":" + ((.sec < 10 )?"0":"") + .sec; sleep .timer_refresh_rate; if(.remainTime <= 0) { if(.active_woe) { donpcevent strnpcinfo(3)+"::OnDoWoE"; } set .roomMsg$, .startMsg$[.state]; set .woe_index, (.woe_index + .state) % .num_woes; //go to next index if needed set .state, (.state + 1) % 2; //flip state donpcevent strnpcinfo(3)+"::OnUpdateCountTick"; sleep .change_state_sleep; } } end; //obligatory end =D OnUpdateCountTick: set .count_tick, getd(".woe_" + .state + "[" + .woe_index + "]"); set .count_tick, gettimetick(2) + .count_tick - gettimetick(1) + (.woe_day[.woe_index] - gettime(4) + 7) % 7 * .ticks_in_day; if(gettimetick(2) > .count_tick) set .count_tick, .count_tick + 7 * .ticks_in_day; end; OnFindCurIndex: set .@cur_day, gettime(4); set .@cur_tick, gettimetick(1); set .woe_index, 0; set .state, 0; for(set .@i, 0; .@i < .num_woes; set .@i, .@i + 1) { if(.woe_day[.@i] < .@cur_day) continue; if(.woe_day[.@i] == .@cur_day) { if(.woe_0[.@i] >= .@cur_tick) { set .woe_index, .@i; set .state, 0; break; } if(.woe_1[.@i] >= .@cur_tick) { set .woe_index, .@i; set .state, 1; break; } } if(.woe_day[.@i] > .@cur_day) { set .woe_index, .@i; set .state, 0; break; } } end; //On map notifier //Comment out OnPCLoadMapEvent label if .notify_woe is disabled to prevent unnecessary triggering OnPCLoadMapEvent: if(.state && .notify_woe) { getmapxy(.@map$, .@x, .@y, 0); set .@region, getd(".loadmap_region_" + .@map$) - 1; if(.@region >= 0) { set .@castleIndex, getd(".loadmap_castleIndex_" + .@map$); if(getd(".woe_state_" + .woe_state[.woe_index] + "[" + .@region + "]") & 1 << .@castleIndex) dispbottom "The [" + GetCastleName(.@map$) + "] castle is available for conquering during this WoE session"; else dispbottom "The [" + GetCastleName(.@map$) + "] castle is NOT available for conquering during this WoE session"; } } end; //------------------------------------------------------------------------------ // WoE Controller Stuff Here //------------------------------------------------------------------------------ OnDoWoE: if((.state == 0 && .init) || (.state == 1 && !agitcheck())) { //starting callfunc "WoEToggler", 1; //kills WoE in all castles that shouldn't have WoE set .@woe_state_array$, ".woe_state_" + .woe_state[.woe_index]; for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) { set .@castles$, ".castles_" + .regions$[.@i] + "$"; set .@castle_check, getd(.@woe_state_array$ + "[" + .@i + "]"); for(set .@k, 0; .@k < .num_castles[.@i]; set .@k, .@k + 1) { set .@map$, getd(.@castles$+"["+.@k+"]"); if((.@castle_check & (1 << .@k)) == 0) { donpcevent getd(".woe_kill_" + .regions$[.@i] + "$[" + .@k + "]"); } } } announce "The War Of Emperium has begun!",bc_all; donpcevent strnpcinfo(3)+"::OnDisplayOwners"; } else { //ending if(agitcheck()) { callfunc "WoEToggler", 0; announce "The War Of Emperium is over!",bc_all; donpcevent strnpcinfo(3)+"::OnDisplayOwners"; } } end; OnDisplayOwners: //displays based on current region set .@woe_state_array$, ".woe_state_" + .woe_state[.woe_index]; for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) { set .@k, 0; set .@castle_check, getd(.@woe_state_array$ + "[" + .@i + "]"); set .@castles$, ".castles_" + .regions$[.@i] + "$"; while(.@castle_check && .@k < .num_castles[.@i]) { if(.@castle_check & (1 << .@k)) { set .@map$, getd(.@castles$+"["+.@k+"]"); if (GetCastleData(.@map$,1)) { announce "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently held by the [" + GetGuildName(GetCastleData(.@map$,1)) + "] guild.",bc_all; } else { announce "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently unoccupied.",bc_all; } set .@castle_check, .@castle_check - (1 << .@k); } set .@k, .@k + 1; } } end; } prontera,151,177,4 script WoE Info 837,{ if(getwaitingroomstate(3, strnpcinfo(3)) == -1) donpcevent strnpcinfo(3)+"::OnInit"; doevent "WoEInfoBase::OnStartMenu"; end; OnInit: while (1) { //only updates if msg is different set .banner$, getwaitingroomstate(4, strnpcinfo(3)); if(getvariableofnpc(.roomMsg$, "WoEInfoBase") != .banner$) { delwaitingroom; waitingroom getvariableofnpc(.roomMsg$, "WoEInfoBase"), 0; } sleep 500; } end; } //zomg! it duplicates!! // prontera,156,196,6 duplicate(WoE Info) WoE Info#2winfo 837 //--------------------------------------------------------------------------------------------------------------------- //These two functions handle WoE's activation/deactivation. Since stable does not have AgitStart2/AgitEnd2, //using the trunk version will result in catastrophic failure of the script. Double declaration of the following //functions fixes this (you will get warning messages though) function script WoEToggler { //<state> = 0|1 if(getarg(0)) { AgitStart; } else { AgitEnd; } return; } //if stable script will fail parsing this function, but the rest of the script will still be usable function script WoEToggler { //<state> = 0|1 if(getarg(0)) { AgitStart; AgitStart2; } else { AgitEnd; AgitEnd2; } return; }
-
right, lol. sorry. Then what about: Start Time: 23:00 End Time: 00:00 No, it won't work, because WoE Sessions can't go into the next day, which is very upsetting
-
24:00 = 00:00.. It wouldn't work if using 24 Hour time :<
-
I apologize for my duplicate post. I've been having some questions on castles, which will probably make seem like an idiot, but I'll ask anyways .. If I was to have my castles/woe start at 11PM and run until 12AM for example, how would I do this? I attempted to use Toastys WoE Controller; I don't understand how I could do this, or if it's actually possible. If this problem has already been solved/answered, please direct me to the post. Thank you for your time.
-
Where could I find this, so I may change it to my interests? I don't really like how the Matk per Int is setup at the moment. Thank you /Edit: I believe I found a formula that fits mine from iRO wiki, well it seems to check out stats to MATK.. Status MATK = floor(Base Level/4 + INT + INT/2 + DEX/5 + LUK/3) Where could I find this to change it in my SRC files?
-
Status.C: #ifdef RENEWAL // renewal formulas status->matk_min = status->matk_max = status_base_matk(status, level); status->hit += (int)(status->dex + ((float)level/17)) + 240; status->flee += (int)(status->agi + ((float)level)) + 9; status->def += (int)(status->vit + ((float)level/51)); status->mdef += (int)(status->int_ + ((float)level/17)); The bottom is when I log in, which is how I want my stats, as bonus, then items give the "def2"/"mdef2".. The top part is whenever I get near another player in PvP, the rest of my stats remain the same, but these ones change.. I didn't change any equips from when I logged in. Another problem, my int is maxed out, but my Matk is still really low. Where could I find the formula for this, or change it per int? ~ Thank you very much! My ATK damage vs Matk damage seems extremely unbalanced.. I can do around 15k's to people SinX, but only around 3k's with a wizard..
-
I found a decent one that works
-
I don't think it's my client, some of the hair colors look correct, but a vast majority of them have a mouth. I think I'll search for Hair dyes/Palettes to experiment and try to fix this.
-
I believe I've tried using official ones, I'm not really certain though.
-
I've used about 4 different Palette GRF's, and each one wasn't very pretty. My face would have random colored dots, some had a mouth/a random dots on my face. Could anyone help me with this or let me know how to edit the palette files? Thank you
-
For example OnSun0500: OnMon0500: agitstart;// start woe end; OnSun0600: OnMon0600: agitend;// put an end of woe end; or you can use Euphy's woe controller or Toasty's woe controller https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/custom/woe_controller.txt http://rathena.org/board/topic/57377-toastys-woe-controller/ I believe I got something to fit my needs, but now when I break the emp while in a guild, the emp disappears? How could I fix this? It's my custom castle, by the way, but duplicated original castle. I have another problem, I can't touch the emp at all, I created a new guild, broke the emp, while the guild still holding the castle, I had someone in a different guild try breaking the emp. I also tried breaking the emp with a different guild, but I can't attack it. Anyone got any ideas on what I did wrong?
-
How could I make castles run longer than "OnClock: 0000"? - script Agit_Event -1,{ OnClock1900: //start time for Mon-Sun OnClock0500: //end time for Mon-Sun OnAgitInit: // starting time checks if((gettime(4)==1) && (gettime(3)>=19 && gettime(3)<05) || (gettime(4)==2) && (gettime(3)>=19 && gettime(3)<05) || (gettime(4)==3) && (gettime(3)>=19 && gettime(3)<05) || (gettime(4)==4) && (gettime(3)>=19 && gettime(3)<05) || (gettime(4)==5) && (gettime(3)>=19 && gettime(3)<05) || (gettime(4)==6) && (gettime(3)>=19 && gettime(3)<05) || (gettime(4)==7) && (gettime(3)>=19 && gettime(3)<05)) { It doesn't start WoE, I believe because of the time.. Could anyone elaborate on this? How could I have my castle(s) run past "0000"?
-
SOLVED
-
Thank you , I have a question For this line; Agit_Main.txt else if (strnpcinfo(2) == "CASTLE") { donpcevent "::OnRecvCastlePt01"; } Would I use my own ::ONEvent, or use an existing one?
-
I'm trying to create my own custom castle, but using an existing map, I already duplicated it and have it working. My problem is how could I add the mapflags and have the guild emblem show when the castle is taken? I've attempted this on my own, but I get an warning saying a guild castle isn't set for my map. Any help would be greatly appreciated! ~Thank you very much!
-
Changed to langtype 1 and it fixed this problem. Thank you!
-
I have a few classes with a strange name.. Could I change this? Not all classes are like this though, only a few.