pastebin - collaborative debugging tool
kpaste.net RSS


agit_controller.txt
Posted by Anonymous on Tue 29th Mar 2011 19:28
raw | new post
modification of post by Anonymous (view diff)

  1. //======================================================================================================
  2. //= Toasty's WoE Controller (formerly WoE Info Banner)
  3. //===== By: ============================================================================================
  4. //= ToastOfDoom (aka: iHeart)
  5. //===== Current Version: ===============================================================================
  6. //= 1.21
  7. //===== Description: ===================================================================================
  8. //= A WoE Controller function which controls castle based WoE by utilising npc events.
  9. //= Includes a NPC that provides information on the next WoE session
  10. //=
  11. //= This script is kinda @reloadscript/@loadnpc safe, provided that someone clicks the NPCs afterwards
  12. //= to start the OnInit function. That said..it is recommended that you don't use @reloadscript/@loadnpc
  13. //= but reset your server.
  14. //===== Changelog: =====================================================================================
  15. //= 1.21
  16. //= - Fixed a misspelt variable name (thanks to rahuldev345 for pointing out)
  17. //= 1.20
  18. //= - Project renamed to 'Toasty's WoE Controller'. The script originally was only used to display WoE
  19. //=   times then I 1st wrote it 3yrs ago and I feel it's purpose is more to control WoE these days. So
  20. //=   name change to better reflect purpose.
  21. //= - Added support for novice WoE. Region teleport goes to the Novice Warper NPC (default in prontera)
  22. //=   Change position in .region_maps, .region_x, .region_y if needed.
  23. //= - Region warp now only displays regions that have castles used at least once. (ie. If you don't
  24. //=   configure any castles for Payon region, payon will not show up)
  25. //= - Optimised WoE Active/Inactive map notifier. Old method used too many loops for something that
  26. //=   can happen alot.
  27. //= - Adjusted menus to be abit more friendly. 'next's will always display before 'menu's
  28. //= - Fixed bug with WoE autostarting when only configured for 2 sessions in one day
  29. //= - Added some nifty code that prevents catastrophic failure of the script if you try to run a trunk
  30. //=   version on a stable server (ie. if you do, it will show an error message, but script will still
  31. //=   run perfectly fine - check out WoEToggler function for those that want to peek at it =P)
  32. //= 1.11
  33. //= - Fixed timer glitch when players only configured sessions for one day of the week
  34. //= - Adjusted timer to show remaining time more accurately
  35. //= - Modified .num_woes calculation due to bug regarding 0's being counted as unset values in arrays
  36. //= 1.10
  37. //= - Expanded script to allow castle based configuration
  38. //= - Moved away from portal based woe control. Now using donpcevents to OnAgitEnd/2 events. Provided
  39. //=   castles are linked to the main agit commands in this manner, they will be controllable using this
  40. //=   script.
  41. //= - Added an onLoadMap WoE available notifier. Can be disabled by setting .notify_woe to 0 in the
  42. //=   CONFIG section.
  43. //= - Did some funky color coding.
  44. //= - Added Coordinate based warping per region (see .region_x & .region_y in the CONSTANTS section)
  45. //= 1.02
  46. //= - Added delwaitingroom to banner npc to prevent memory leaks from bug #2325
  47. //= - To reduce spamming of waitingroom packets to players banner NPC only now updates when the banner
  48. //=   text changes. Thus min time between updates is now 1sec regardless of setting.
  49. //= - Added setting for rate which banner time is updated (.banner_refresh_rate) in the CONFIG section.
  50. //= - Added agitstart2/end2 to provide WoE2 support (Hope it works ^_^;)
  51. //= 1.01
  52. //= - Hardcoded in refresh value for banner npc instead of getting it from config from WoEInfoBase. Had
  53. //=   issues starting the script after @reloadscript/@loadnpc
  54. //======================================================================================================
  55. -       script  WoEInfoBase     -1,{
  56.  
  57.         OnStartMenu:
  58.                 if(.init == 0)
  59.                         donpcevent strnpcinfo(3)+"::OnInit";
  60.        
  61.         OnStartMenu2:
  62.                 mes "The " + ((.state)?"^00DD00current":"^DD0000next") + "^000000 WoE session is: ";
  63.                 mes " ";
  64.                 mes "Day: ^0000DD" + .daysOfWeek$[.woe_day[.woe_index]];
  65.                 mes "^000000Start time: ^00DD00" + .woe_0_str$[.woe_index];
  66.                 mes "^000000End time: ^DD0000" + .woe_1_str$[.woe_index];
  67.                 mes "^000000Region:";
  68.  
  69.                 set .@state_strs$, ".woe_state_str_" + .woe_state[.woe_index] + "$";
  70.                 for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) {
  71.                         set .@output$, getd(.@state_strs$ + "[" + .@i + "]");
  72.                         if(.@output$ != "")
  73.                                 mes "^000000- ^0000DD" + .@output$;
  74.                 }
  75.                 next;
  76.                
  77.                 if(getgmlevel() >= .gm_access)
  78.                         select(
  79.                                 "Warp to Castle Grounds",
  80.                                 "View Castle Owners",
  81.                                 "View all WoE times",
  82.                                 ((!.state)?"Start next WoE":"End current WoE"),
  83.                                 ((.state)?"":"Skip next WoE session")
  84.                                 );
  85.                 else
  86.                         select(
  87.                                 "Warp to Castle Grounds",
  88.                                 "View Castle Owners",
  89.                                 "View all WoE times");
  90.                        
  91.                 switch(@menu) {
  92.                         case 1:         //warp
  93.                                 mes "Which region would you like to warp to?";
  94.                                 next;
  95.                                 select(.region_warp$[.woe_state[.woe_index]]);
  96.                                 if(@menu < 1 || @menu > .num_regions)
  97.                                         close;
  98.                                                                
  99.                                 close2;
  100.                                 warp .region_maps$[@menu - 1], .region_x[@menu - 1], .region_y[@menu - 1];
  101.                                 end;
  102.                         case 2:         //view                 
  103.                                 set .@woe_state_array$, ".woe_state_" + .woe_state[.woe_index];
  104.                                 for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) {
  105.                                         set .@k, 0;
  106.                                         set .@castles$, ".castles_" + .regions$[.@i] + "$";
  107.                                         set .@castle_check, getd(.@woe_state_array$ + "[" + .@i + "]");
  108.                                         while(.@castle_check && .@k < .num_castles[.@i]) {
  109.                                                 if(.@castle_check & (1 << .@k)) {
  110.                                                         set .@map$, getd(.@castles$+"["+.@k+"]");
  111.                                                         if (GetCastleData(.@map$,1)) {
  112.                                                                 dispbottom "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently held by the [" + GetGuildName(GetCastleData(.@map$,1)) + "] guild.";
  113.                                                         } else {
  114.                                                                 dispbottom "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently unoccupied.";
  115.                                                         }
  116.                                                         set .@castle_check, .@castle_check - (1 << .@k);
  117.                                                 }
  118.                                                 set .@k, .@k + 1;              
  119.                                         }
  120.                                 }
  121.                                 break;
  122.                         case 3:         //woe times
  123.                                 for(set .@i, 0; .@i < .num_woes; set .@i, .@i + 1) {                                                   
  124.                                         dispbottom "- " + .daysOfWeek$[.woe_day[.@i]] + " " + .woe_0_str$[.@i] + "-" + .woe_1_str$[.@i];
  125.                                         set .@woe_state_str_array$, ".woe_state_str_" + .woe_state[.@i] + "$";
  126.                                         for(set .@k, 0; .@k < .num_regions; set .@k, .@k + 1) {
  127.                                                 set .@output$, getd(.@woe_state_str_array$ + "[" + .@k + "]");
  128.                                                 if(.@output$ != "")
  129.                                                         dispbottom "        " + .@output$;
  130.                                         }
  131.                                 }
  132.                                 break;
  133.                         case 4:         //start next;
  134.                                 if(getgmlevel() <.gm_access) close;
  135.                                
  136.                                 mes "^FF0000Are you sure you want to " + ((!.state)?"start the next WoE session?":"end the current WoE session?");
  137.                                 next;
  138.                                 if(select("Yes:No") == 2) break;
  139.                                
  140.                                 set .remainTime, 0;     //might not work sometimes...you have like a 500ms window out of 505ms i guess..
  141.                                 sleep2 .timer_refresh_rate;     //wait abit so the menu doesn't screw up (how long it takes for the timer to update)
  142.                                 break;
  143.                         case 5:         //skip next;
  144.                                 if(getgmlevel() <.gm_access || .state) close;
  145.                                
  146.                                 mes "^FF0000Are you sure you want to skip the next WoE session^000000";
  147.                                 next;
  148.                                 if(select("Yes:No") == 2) break;
  149.                                 if(.state) {    //you really can't do this with woe active
  150.                                         next;
  151.                                         mes "Sorry, in the time you took making your decision, WoE started";
  152.                                         mes "Please either manually end it first or wait";
  153.                                         break;                 
  154.                                 }
  155.                                 set .woe_index, (.woe_index + 1) % .num_woes;
  156.                                 donpcevent strnpcinfo(3)+"::OnUpdateCountTick";
  157.                                 sleep2 .timer_refresh_rate;
  158.                                 break;
  159.                         default: close;        
  160.                 }
  161.                 goto OnStartMenu2;
  162.        
  163.         OnInit:
  164.  
  165.                 //-----------------------------------------------------------------------------------------//
  166.                 //CONFIG START                                                                             //
  167.                 //-----------------------------------------------------------------------------------------//
  168.                
  169.                 set .gm_access, 60;
  170.                
  171.                 //WoE timings needs to be ordered ascendingly unless you want to do weird
  172.                 //stuff like skip a region every other week or so...
  173.                 //Also times can't overlap. Uses second of day(gettimetick(1)) for timing
  174.                 // eg 1am -> 3600, 2:30pm -> 52200, midnight -> 86400 (anything past that doesn't work)
  175.                 //Note: woe_0 is start times, woe_1 is end times. Ignore how it's called but
  176.                 //               don't change it either since it's dynamically used
  177.                 //               Also..woe has to end on the same day it starts (it's easier that way..)
  178.                 setarray .woe_day[0],   0,    2,    4,    6;
  179.                 setarray .woe_0[0],     68400,68400,68400,68400;
  180.                 setarray .woe_1[0],     75600,75600,75600,75600;
  181.                 setarray .woe_state[0], 0,    1,    2,    3;
  182.                
  183.                 //WoE state settings. Every WoE session can be defined as a particular state of castle configuration.
  184.                 //.woe_state_#[%] = $
  185.                 // # - state number
  186.                 // % - region number
  187.                 // $ - binary representation of castles that are active for that region in that state (
  188.                 //     (ie. 0 is no castles, 5 is castle 0 and 2  (2^0 + 2^2 = 5))
  189.                 setarray .woe_state_0[0],1,0,0,0,0,0,0;
  190.                 setarray .woe_state_1[0],0,0,2,0,0,0,0;
  191.                 setarray .woe_state_2[0],0,16,0,0,0,0,0;
  192.                 setarray .woe_state_3[0],0,0,0,2,0,0,0;
  193.                
  194.                 //Setting for if script handles WoE controller function. Disable agit_controller.txt if you are using this.
  195.                 //For if you want to use something else to handle your woe stuff but only this script
  196.                 //to show info (1 - on, 0 - off...duh)
  197.                 set .active_woe, 1;
  198.                
  199.                
  200.                 //WoE inactive on map notifier. Basically notifies player if the castle they are entering is
  201.                 //WoE active or not
  202.                 set .notify_woe, 1;
  203.                
  204.                 //-----------------------------------------------------------------------------------------//
  205.                 //CONFIG END                                                                               //
  206.                 //-----------------------------------------------------------------------------------------//
  207.                
  208.                
  209.                 //-----------------------------------------------------------------------------------------//
  210.                 //CONSTANTS START - Don't touch this unless you know what you are doing                    //
  211.                 //-----------------------------------------------------------------------------------------//
  212.                
  213.                 //castle maps by region
  214.                 setarray .castles_prtg$[0],"prtg_cas01","prtg_cas02","prtg_cas03","prtg_cas04","prtg_cas05";
  215.                 setarray .castles_payg$[0],"payg_cas01","payg_cas02","payg_cas03","payg_cas04","payg_cas05";
  216.                 setarray .castles_gefg$[0],"gefg_cas01","gefg_cas02","gefg_cas03","gefg_cas04","gefg_cas05";
  217.                 setarray .castles_aldeg$[0],"aldeg_cas01","aldeg_cas02","aldeg_cas03","aldeg_cas04","aldeg_cas05";
  218.                 setarray .castles_arug$[0],"arug_cas01","arug_cas02","arug_cas03","arug_cas04","arug_cas05";
  219.                 setarray .castles_schg$[0],"schg_cas01","schg_cas02","schg_cas03","schg_cas04","schg_cas05";
  220.                 setarray .castles_novi$[0],"nguild_alde","nguild_gef","nguild_pay","nguild_prt";
  221.                
  222.                 //woe kill functions for each castle
  223.                 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";
  224.                 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";
  225.                 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";
  226.                 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";
  227.                 setarray .woe_kill_arug$[0],"Manager#aru01_02::OnAgitEnd2","Manager#aru02_02::OnAgitEnd2","Manager#aru03_02::OnAgitEnd2","Manager#aru04_02::OnAgitEnd2","Manager#aru05_02::OnAgitEnd2";
  228.                 setarray .woe_kill_schg$[0],"Manager#sch01_02::OnAgitEnd2","Manager#sch02_02::OnAgitEnd2","Manager#sch03_02::OnAgitEnd2","Manager#sch04_02::OnAgitEnd2","Manager#sch05_02::OnAgitEnd2";
  229.                 setarray .woe_kill_novi$[0],"Agit_N01::OnAgitEnd","Agit_N02::OnAgitEnd","Agit_N03::OnAgitEnd","Agit_N04::OnAgitEnd";
  230.                
  231.                 //region prefixs
  232.                 setarray .regions$[0],"prtg","payg","gefg","aldeg","arug","schg","novi";
  233.                
  234.                 //region info
  235.                 setarray .region_names$[0],"Prontera", "Payon", "Geffen", "Aldebaran", "Arunafeltz", "Schwarzwald", "Novice Castles";
  236.                 setarray .region_maps$[0],"prt_gld", "pay_gld", "gef_fild13", "alde_gld", "aru_gld", "sch_gld", "prontera";
  237.                 //coords to warp player to region (0 is random)
  238.                 setarray .region_x[0],0, 0, 0, 0, 0, 0, 148;
  239.                 setarray .region_y[0],0, 0, 0, 0, 0, 0, 163;
  240.  
  241.                 setarray .waitMsg$[0], "WoE Starts: ", "WoE Ends: ";
  242.                 setarray .startMsg$[0], "WoE is Starting", "WoE is Ending";
  243.        
  244.                 set .ticks_in_day, 86400;       //mmm...magic numbers
  245.                 setarray .daysOfWeek$[0], "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday";
  246.  
  247.                 set .timer_refresh_rate, 500;   //how many ms per timer refresh...keep less than 1000 (in milliseconds)
  248.                 set .change_state_sleep, 3000;  //how long to show "WoE is Start|End-ing" msg for in ms. (in milliseconds)
  249.                                                                                 //Make sure WoE sessions are longer than this xD
  250.                 set .banner_refresh_rate, 10;   //how many seconds per banner refresh...keep 1 or above (in seconds)
  251.                
  252.                 //-----------------------------------------------------------------------------------------//
  253.                 //CONSTANTS END                                                                            //
  254.                 //-----------------------------------------------------------------------------------------//
  255.  
  256.                 set .num_regions, getarraysize(.regions$);
  257.                 set .num_woes, getarraysize(.woe_1);
  258.                
  259.                 for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) {
  260.                         //count num castles per region
  261.                         set .num_castles[.@i], getarraysize(getd(".castles_" + .regions$[.@i] + "$"));
  262.                 }
  263.                
  264.                 //convert timestamps to readable format
  265.                 for(set .@i, 0; .@i < .num_woes; set .@i, .@i + 1)
  266.                 {
  267.                         set .@hrs, .woe_0[.@i] / 3600;
  268.                         set .@mins, .woe_0[.@i] % 3600 / 60;
  269.                         set .@output$, ((.@hrs % 12)?.@hrs%12:12) + ":" + ((.@mins < 10)?"0"+.@mins:.@mins) + " " + ((.@hrs > 12)?"PM":"AM");  
  270.                        
  271.                         set .woe_0_str$[.@i], .@output$;               
  272.                        
  273.                         set .@hrs, .woe_1[.@i] / 3600;
  274.                         set .@mins, .woe_1[.@i] % 3600 / 60;
  275.                         set .@output$, ((.@hrs % 12)?.@hrs%12:12) + ":" + ((.@mins < 10)?"0"+.@mins:.@mins) + " " + ((.@hrs > 12)?"PM":"AM");  
  276.                        
  277.                         set .woe_1_str$[.@i], .@output$;               
  278.                 }
  279.                
  280.                 //calc number of woe states and consolidate states to create list of castles used
  281.                 set .num_states, 0;
  282.                 while(getarraysize(getd(".woe_state_" + (.num_states)))) {
  283.                         set .@state$, ".woe_state_" + .num_states;
  284.                         set .@i, 0;
  285.                         while(.@i < getarraysize(getd(.@state$))) {
  286.                                 set .castleUsage[.@i], .castleUsage[.@i] | getd(.@state$ + "[" + .@i + "]");
  287.                                 set .@i, .@i + 1;
  288.                         }
  289.                         set .num_states, .num_states + 1;                      
  290.                 }
  291.  
  292.                 for(set .@i, 0; .@i < .num_states; set .@i, .@i + 1) {                                                 
  293.                         set .@woe_state_array$, ".woe_state_" + .@i;
  294.                         for(set .@k, 0; .@k < .num_regions; set .@k, .@k + 1) {
  295.                                 if(.castleUsage[.@k] > 0) {
  296.                                         set .@castles$, ".castles_" + .regions$[.@k] + "$";
  297.                                         set .@castle_check, getd(.@woe_state_array$ + "[" + .@k + "]");
  298.                                         if(.@castle_check == 0) { //region not in this state
  299.                                                 //region warp menu string
  300.                                                 set .region_warp$[.@i], .region_warp$[.@i] + "^DD0000" + .region_names$[.@k] + "^000000:";
  301.                                                 continue;
  302.                                         } else {
  303.                                                 if(.@castle_check >= ((1 << .num_castles[.@k]) - 1)) {
  304.                                                         //includes all castles...just list as region.
  305.                                                         setd(".woe_state_str_" + .@i + "$[" + .@k + "]", .region_names$[.@k]);
  306.                                                        
  307.                                                         //region warp menu string
  308.                                                         set .region_warp$[.@i], .region_warp$[.@i] + "^00DD00" + .region_names$[.@k] + "^000000:";
  309.                                                 } else {
  310.                                                         set .@j, 0;
  311.                                                         set .@output$, "";
  312.                                                         while(.@j < .num_castles[.@k]) {
  313.                                                                 if(.@castle_check & (1 << .@j)) {
  314.                                                                         set .@output$, .@output$ + GetCastleName(getd(.@castles$+"["+.@j+"]"));
  315.                                                                         set .@castle_check, .@castle_check - (1 << .@j);
  316.                                                                         if(.@castle_check) {
  317.                                                                                 if(.@output$ != "")
  318.                                                                                 set .@output$, .@output$ + ", ";
  319.                                                                         } else
  320.                                                                                 break;
  321.                                                                 }
  322.                                                                 set .@j, .@j + 1;
  323.                                                         }
  324.                                                         setd(".woe_state_str_" + .@i + "$[" + .@k + "]", .region_names$[.@k] + " ("+  .@output$ + ")");
  325.                                                        
  326.                                                         //region warp menu string
  327.                                                         set .region_warp$[.@i], .region_warp$[.@i] + "^00DD00" + .region_names$[.@k] + " ("+  .@output$ + ")^000000:";
  328.                                                 }
  329.                                         }
  330.                                 } else {
  331.                                         set .region_warp$[.@i], .region_warp$[.@i] + ":";
  332.                                 }
  333.                         }
  334.                 }
  335.                
  336.                 donpcevent strnpcinfo(3)+"::OnFindCurIndex";
  337.                 donpcevent strnpcinfo(3)+"::OnUpdateCountTick";
  338.                        
  339.                 if(.active_woe) {
  340.                         if(.notify_woe) {
  341.                                 //set mapflag for all castle maps
  342.                                 for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) {
  343.                                         set .@region_array$, ".castles_" + .regions$[.@i] + "$";
  344.                                         for(set .@k, 0; .@k < .num_castles[.@i]; set .@k, .@k + 1) {
  345.                                                 setmapflag getd(.@region_array$ + "[" + .@k + "]"), mf_loadevent;
  346.                                                 setd(".loadmap_region_" + getd(.@region_array$ + "[" + .@k + "]"), .@i + 1);
  347.                                                 setd(".loadmap_castleIndex_" + getd(.@region_array$ + "[" + .@k + "]"), .@k);
  348.                                         }
  349.                                 }
  350.                         }
  351.                         //activates WoE if needed
  352.                         donpcevent strnpcinfo(3)+"::OnDoWoE";
  353.                 }
  354.                 //flag that init occured
  355.                 set .init, 1;
  356.        
  357.         OnWoETimer:
  358.                 //timer stuff
  359.                 while (1) {
  360.                         set .remainTime, .count_tick - gettimetick(2);
  361.                         set .bannerTimer, .remainTime - (.remainTime % .banner_refresh_rate) + .banner_refresh_rate;
  362.                         set .min, .bannerTimer / 60;
  363.                         set .sec, .bannerTimer - .min * 60;
  364.                         set .hr, .min / 60;
  365.                         set .min, .min - .hr * 60;
  366.                         set .roomMsg$, .waitMsg$[.state] + .hr + ":" + ((.min < 10 )?"0":"") + .min + ":" + ((.sec < 10 )?"0":"") + .sec;
  367.                         sleep .timer_refresh_rate;
  368.                        
  369.                         if(.remainTime <= 0) {
  370.                                 if(.active_woe) {
  371.                                         donpcevent strnpcinfo(3)+"::OnDoWoE";
  372.                                         }
  373.                                 set .roomMsg$, .startMsg$[.state];
  374.                                
  375.                                 set .woe_index, (.woe_index + .state) % .num_woes;      //go to next index if needed
  376.                                 set .state, (.state + 1) % 2;                                           //flip state
  377.  
  378.                                 donpcevent strnpcinfo(3)+"::OnUpdateCountTick";
  379.                                 sleep .change_state_sleep;
  380.                         }
  381.                 }
  382.                 end;    //obligatory end =D            
  383.  
  384.         OnUpdateCountTick:
  385.                 set .count_tick, getd(".woe_" + .state + "[" + .woe_index + "]");
  386.                 set .count_tick, gettimetick(2) + .count_tick - gettimetick(1) + (.woe_day[.woe_index] - gettime(4) + 7) % 7 * .ticks_in_day;
  387.  
  388.                 if(gettimetick(2) > .count_tick)
  389.                         set .count_tick, .count_tick + 7 * .ticks_in_day;
  390.                 end;
  391.        
  392.         OnFindCurIndex:
  393.        
  394.                 set .@cur_day, gettime(4);             
  395.                 set .@cur_tick, gettimetick(1);
  396.                
  397.                 set .woe_index, 0;
  398.                 set .state, 0;
  399.  
  400.                 for(set .@i, 0; .@i < .num_woes; set .@i, .@i + 1) {
  401.                         if(.woe_day[.@i] < .@cur_day)
  402.                                 continue;
  403.                
  404.                         if(.woe_day[.@i] == .@cur_day) {
  405.                                 if(.woe_0[.@i] >= .@cur_tick) {
  406.                                         set .woe_index, .@i;
  407.                                         set .state, 0;
  408.                                         break;
  409.                                 }
  410.                                 if(.woe_1[.@i] >= .@cur_tick) {
  411.                                         set .woe_index, .@i;
  412.                                         set .state, 1;
  413.                                         break;
  414.                                 }
  415.                         }
  416.                         if(.woe_day[.@i] > .@cur_day) {
  417.                                 set .woe_index, .@i;
  418.                                 set .state, 0;
  419.                                 break;
  420.                         }              
  421.                 }
  422.                 end;
  423.                        
  424.         //On map notifier
  425.         //Comment out OnPCLoadMapEvent label if .notify_woe is disabled to prevent unnecessary triggering
  426.         OnPCLoadMapEvent:
  427.                 if(.state && .notify_woe) {
  428.                         getmapxy(.@map$, .@x, .@y, 0);
  429.                         set .@region, getd(".loadmap_region_" + .@map$) - 1;
  430.                         if(.@region >= 0) {
  431.                                 set .@castleIndex, getd(".loadmap_castleIndex_" + .@map$);
  432.                                 if(getd(".woe_state_" + .woe_state[.woe_index] + "[" + .@region + "]") & 1 << .@castleIndex)
  433.                                         dispbottom "The [" + GetCastleName(.@map$) + "] castle is available for conquering during this WoE session";
  434.                                 else
  435.                                         dispbottom "The [" + GetCastleName(.@map$) + "] castle is NOT available for conquering during this WoE session";
  436.                         }
  437.                 }
  438.                 end;
  439.                
  440.         //------------------------------------------------------------------------------
  441.         // WoE Controller Stuff Here
  442.         //------------------------------------------------------------------------------
  443.                
  444.         OnDoWoE:       
  445.                 if((.state == 0 && .init) || (.state == 1 && !agitcheck())) {   //starting
  446.                         callfunc "WoEToggler", 1;      
  447.                        
  448.                         //kills WoE in all castles that shouldn't have WoE
  449.                         set .@woe_state_array$, ".woe_state_" + .woe_state[.woe_index];
  450.                         for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) {
  451.                                 set .@castles$, ".castles_" + .regions$[.@i] + "$";
  452.                                 set .@castle_check, getd(.@woe_state_array$ + "[" + .@i + "]");
  453.                                
  454.                                 for(set .@k, 0; .@k < .num_castles[.@i]; set .@k, .@k + 1) {
  455.                                         set .@map$, getd(.@castles$+"["+.@k+"]");
  456.                                         if((.@castle_check & (1 << .@k)) == 0) {
  457.                                                 donpcevent getd(".woe_kill_" + .regions$[.@i] + "$[" + .@k + "]");
  458.                                         }
  459.                                 }
  460.                         }
  461.  
  462.                         announce "The War Of Emperium has begun!",bc_all;
  463.                         donpcevent strnpcinfo(3)+"::OnDisplayOwners";
  464.                 } else {                        //ending
  465.                         if(agitcheck()) {
  466.                                 callfunc "WoEToggler", 0;
  467.                                 announce "The War Of Emperium is over!",bc_all;
  468.                                 donpcevent strnpcinfo(3)+"::OnDisplayOwners";
  469.                         }
  470.                 }
  471.                 end;
  472.                
  473.         OnDisplayOwners:        //displays based on current region
  474.                 set .@woe_state_array$, ".woe_state_" + .woe_state[.woe_index];
  475.                 for(set .@i, 0; .@i < .num_regions; set .@i, .@i + 1) {
  476.                         set .@k, 0;
  477.                        
  478.                         set .@castle_check, getd(.@woe_state_array$ + "[" + .@i + "]");
  479.                         set .@castles$, ".castles_" + .regions$[.@i] + "$";
  480.                        
  481.                         while(.@castle_check && .@k < .num_castles[.@i]) {
  482.                                 if(.@castle_check & (1 << .@k)) {
  483.                                         set .@map$, getd(.@castles$+"["+.@k+"]");
  484.                                         if (GetCastleData(.@map$,1)) {
  485.                                                 announce "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently held by the [" + GetGuildName(GetCastleData(.@map$,1)) + "] guild.",bc_all;
  486.                                         } else {
  487.                                                 announce "The [" + GetCastleName(.@map$) + "] castle of the [" + .region_names$[.@i] + "] region is currently unoccupied.",bc_all;
  488.                                         }
  489.                                         set .@castle_check, .@castle_check - (1 << .@k);
  490.                                 }                              
  491.                                 set .@k, .@k + 1;              
  492.                         }
  493.                 }
  494.                 end;
  495. }
  496. prontera,163,194,4      script  WoE Info        837,{
  497.         if(getwaitingroomstate(3, strnpcinfo(3)) == -1)
  498.                 donpcevent strnpcinfo(3)+"::OnInit";
  499.  
  500.         doevent "WoEInfoBase::OnStartMenu";
  501.         end;
  502.        
  503.         OnInit:
  504.                 while (1) {
  505.                         //only updates if msg is different
  506.                         set .banner$, getwaitingroomstate(4, strnpcinfo(3));
  507.                         if(getvariableofnpc(.roomMsg$, "WoEInfoBase") != .banner$) {
  508.                                 delwaitingroom;
  509.                                 waitingroom getvariableofnpc(.roomMsg$, "WoEInfoBase"), 0;
  510.                         }
  511.                         sleep 500;
  512.                 }
  513.                 end;
  514. }
  515.  
  516. //zomg! it duplicates!!
  517. prontera,156,196,6      duplicate(WoE Info)     WoE Info#2winfo 837
  518.  
  519. //---------------------------------------------------------------------------------------------------------------------
  520.  
  521. //These two functions handle WoE's activation/deactivation. Since stable does not have AgitStart2/AgitEnd2,
  522. //using the trunk version will result in catastrophic failure of the script. Double declaration of the following
  523. //functions fixes this (you will get warning messages though)
  524.  
  525. function        script  WoEToggler      { //<state> = 0|1
  526.         if(getarg(0)) {
  527.                 AgitStart;
  528.         } else {
  529.                 AgitEnd;
  530.         }
  531.         return;
  532. }
  533.  
  534. //if stable script will fail parsing this function, but the rest of the script will still be usable
  535. function        script  WoEToggler      { //<state> = 0|1
  536.         if(getarg(0)) {
  537.                 AgitStart;
  538.                 AgitStart2;
  539.         } else {
  540.                 AgitEnd;
  541.                 AgitEnd2;
  542.         }
  543.         return;
  544. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at