Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Summarized %/s List
Code:
                    if (hyper && wind_of_frey_cd <= 0)
                    {
                        checkBuffs();
                        wind_of_frey_cd = wind_of_frey_maxcd;
                        damage += addDamage((damR + armor_piercing_bonus) * wind_of_frey, wind_of_frey_hits, applyIgnore(ignore, armor_piercing_ignore, sharp_eyes_ignoreguard.get()), wind_of_frey_mob);
                        hits += wind_of_frey_hits * wind_of_frey_mob;
                        if (wind_of_frey_maxdam > 0)
                            maxdam += (damcap + wind_of_frey_maxdam - currcap) * wind_of_frey_hits * wind_of_frey_mob;
                        else
                            maxdam += damcap * wind_of_frey_hits * wind_of_frey_mob;
                        addDelay(adjustspeed(wind_of_frey_delay));
                        dot += wind_of_frey_dot * wind_of_frey_dot_maxdur * wind_of_frey_mob;
                        maxdam += rangecap * wind_of_frey_dot * wind_of_frey_dot_maxdur * wind_of_frey_mob / 100;
                    }
                    else if (x <= arrow_blaster_maxmob + arrow_blaster_extratarget.get())
                    {
                        checkBuffs();
                        arrow_blaster_dur = arrow_blaster_maxdur;
                        addDelay(adjustspeed(arrow_blaster_pre));
                        while (arrow_blaster_dur > 0)
                        {
                            armorpiercing();
                            damage += addDamage((damR + armor_piercing_bonus + arrow_blaster_reinforce.get() + arrow_blaster_bosskiller.get()) * arrow_blaster1,
                                arrow_blaster_hits, applyIgnore(ignore, armor_piercing_ignore, sharp_eyes_ignoreguard.get()), arrow_blaster_mob);
                            hits += arrow_blaster_hits * arrow_blaster_mob;
                            maxdam += damcap * arrow_blaster_hits * arrow_blaster_mob;
                            AFA();
                            advancedQuiver();
                            addDelay(arrow_blaster_delay);
                        }
                        arrow_blaster2_dur = arrow_blaster2_maxdur;
                        arrow_blaster = arrow_blaster2;
                    }

Here's some example code. I honestly never give any of it really much thought, and push through it while I watch anime most of the time. I could wrap the hits += into the addDamage method, but I'm not 100% sure because there have been cases (i.e. Shadow Partner, DoT) where I may want to weigh a hit differently.
The addDelay method tosses the action delay and automatically rounds it to the highest 30ms, so Arrow Blaster will always be 90ms. The adjustpeed method accounts for weapon speed, so Arrow Blaster is exempt, like buffs, but the start up (supposedly) isn't. It'd be more detrimental to stop in the middle of Arrow Blaster to cast a buff or other skills, so I have it run through the full duration before choosing another action, as such, the while loop. In theory, the optimal method with this is to re-cast the turret just as your channeling expires, resetting its duration assuming it has no real startup though it probably does. This is rather idealized, and I should probably do a check for arrow_blaster2_dur <= 5 or something before resetting it, but since I have no actual start-up input for the turret, it's of no consequence yet.

Code:
    public static void arrowBlaster(double t)
    {
        if (arrow_blaster2_dur > 0)
        {
            arrow_blaster_time += t;
            while (arrow_blaster_time >= arrow_blaster_delay)
            {
                armorpiercing();
                arrow_blaster_time -= arrow_blaster_delay;
                damage += addDamage((damR + arrow_blaster_reinforce.get() + arrow_blaster_bosskiller.get() + armor_piercing_bonus) * arrow_blaster, arrow_blaster_hits,
                    applyIgnore(ignore, armor_piercing_ignore, sharp_eyes_ignoreguard.get()), arrow_blaster_mob);
                hits += (arrow_blaster_hits) * arrow_blaster_mob;
                maxdam += damcap * (arrow_blaster_hits) * arrow_blaster_mob;
            }
        }
        else
            arrow_blaster_time = 0;
    }
So while the turret duration is active, every "t" time that passes, it feeds through this method checking if the turret will fire or not.
AFA, advancedQuiver, armorpiercing all run through random number generators to see if you activate their effects. So when you do armorpiercing(), it checks if you activate it or not; if you don't, it increases the activation rate and sets the bonus and ignore to 0. If it does work, it sets the bonus and ignore to whatever they are and puts the activation rate back to 10%.


The methodology is just a straight forward simulation of a character going through a checklist using all its innate abilities, over the course of a few thousand iterations, and many people could easily do this more efficiently than I do; no one has bothered for whatever reason, likely because it's time consuming and reward-less.
Reply


Messages In This Thread
Summarized %/s List - by JoeTang - 2013-01-04, 02:20 PM
Summarized %/s List - by Curtiss - 2013-01-04, 02:45 PM
Summarized %/s List - by OhBaby - 2013-01-04, 02:52 PM
Summarized %/s List - by Bribery - 2013-01-04, 02:54 PM
Summarized %/s List - by JoeTang - 2013-01-04, 02:55 PM
Summarized %/s List - by Eliseo - 2013-01-04, 03:13 PM
Summarized %/s List - by Aflac - 2013-01-04, 04:17 PM
Summarized %/s List - by Chew - 2013-01-04, 04:42 PM
Summarized %/s List - by TrueBlitz - 2013-01-04, 05:12 PM
Summarized %/s List - by hadriel - 2013-01-04, 05:34 PM
Summarized %/s List - by MuscleWizard - 2013-01-04, 05:45 PM
Summarized %/s List - by Takebacker - 2013-01-04, 06:01 PM
Summarized %/s List - by JoeTang - 2013-01-04, 06:23 PM
Summarized %/s List - by Stereo - 2013-01-04, 06:36 PM
Summarized %/s List - by ShinkuDragon - 2013-01-04, 06:39 PM
Summarized %/s List - by hadriel - 2013-01-04, 06:59 PM
Summarized %/s List - by JoeTang - 2013-01-04, 07:20 PM
Summarized %/s List - by Chew - 2013-01-04, 07:51 PM
Summarized %/s List - by DustinxD - 2013-01-04, 08:16 PM
Summarized %/s List - by MetaSeraphim - 2013-01-04, 08:59 PM
Summarized %/s List - by TagerBustah - 2013-01-04, 09:14 PM
Summarized %/s List - by Chilly - 2013-01-04, 09:53 PM
Summarized %/s List - by MorbidMagus - 2013-01-04, 11:01 PM
Summarized %/s List - by FabledGumbo - 2013-01-04, 11:11 PM
Summarized %/s List - by Heero - 2013-01-04, 11:21 PM
Summarized %/s List - by YennoX - 2013-01-04, 11:33 PM
Summarized %/s List - by Pink Bean - 2013-01-05, 12:40 AM
Summarized %/s List - by FabledGumbo - 2013-01-05, 12:51 AM
Summarized %/s List - by TagerBustah - 2013-01-05, 02:50 AM
Summarized %/s List - by Chilly - 2013-01-05, 03:01 AM
Summarized %/s List - by TagerBustah - 2013-01-05, 03:09 AM
Summarized %/s List - by SaptaZapta - 2013-01-05, 04:39 AM
Summarized %/s List - by LiquidSwing - 2013-01-05, 05:18 AM
Summarized %/s List - by YennoX - 2013-01-05, 05:57 AM
Summarized %/s List - by Curtiss - 2013-01-05, 06:07 AM
Summarized %/s List - by Yooniecorns - 2013-01-05, 09:01 AM
Summarized %/s List - by Icedemontrihorn - 2013-01-05, 09:27 AM
Summarized %/s List - by MountLag - 2013-01-05, 09:32 AM
Summarized %/s List - by holycow - 2013-01-05, 09:58 AM
Summarized %/s List - by Polantaris - 2013-01-05, 10:11 AM
Summarized %/s List - by TagerBustah - 2013-01-05, 02:23 PM
Summarized %/s List - by Dark Link - 2013-01-05, 03:49 PM
Summarized %/s List - by MountLag - 2013-01-05, 04:12 PM
Summarized %/s List - by LiquidSwing - 2013-01-05, 11:48 PM
Summarized %/s List - by Chilly - 2013-01-06, 12:19 AM
Summarized %/s List - by MorbidMagus - 2013-01-06, 06:28 AM
Summarized %/s List - by TagerBustah - 2013-01-06, 08:44 AM
Summarized %/s List - by Dark Link - 2013-01-06, 10:54 AM
Summarized %/s List - by Zuruzuka - 2013-01-06, 03:07 PM
Summarized %/s List - by LadyJenJen - 2013-01-06, 05:41 PM
Summarized %/s List - by MorbidMagus - 2013-01-06, 09:03 PM
Summarized %/s List - by Bomber - 2013-01-07, 12:17 AM
Summarized %/s List - by TagerBustah - 2013-01-07, 02:16 AM
Summarized %/s List - by TagerBustah - 2013-01-07, 02:45 AM
Summarized %/s List - by Mazz - 2013-01-07, 07:37 AM
Summarized %/s List - by HellenzSin - 2013-01-07, 07:40 AM
Summarized %/s List - by Zuruzuka - 2013-01-07, 08:34 PM
Summarized %/s List - by DemonImpact - 2013-01-08, 02:33 PM
Summarized %/s List - by JoeTang - 2013-01-08, 04:20 PM
Summarized %/s List - by Vanderlust - 2013-01-08, 05:04 PM
Summarized %/s List - by JoeTang - 2013-01-08, 05:39 PM
Summarized %/s List - by DemonImpact - 2013-01-08, 05:51 PM
Summarized %/s List - by JoeTang - 2013-01-08, 06:03 PM
Summarized %/s List - by ShinkuDragon - 2013-01-08, 06:21 PM
Summarized %/s List - by Vanderlust - 2013-01-08, 06:44 PM
Summarized %/s List - by Zuruzuka - 2013-01-08, 07:03 PM
Summarized %/s List - by MountLag - 2013-01-08, 09:28 PM
Summarized %/s List - by DemonImpact - 2013-01-09, 09:31 AM
Summarized %/s List - by JoeTang - 2013-01-09, 11:16 AM
Summarized %/s List - by Polantaris - 2013-01-10, 11:47 AM
Summarized %/s List - by Eliseo - 2013-01-10, 03:10 PM
Summarized %/s List - by JoeTang - 2013-01-10, 03:14 PM
Summarized %/s List - by ShinkuDragon - 2013-01-11, 03:17 AM
Summarized %/s List - by JoeTang - 2013-01-11, 11:29 AM
Summarized %/s List - by Problem. - 2013-01-12, 02:25 AM
Summarized %/s List - by Arcana27961 - 2013-01-12, 02:38 AM
Summarized %/s List - by fodjgngf - 2013-01-12, 03:38 PM
Summarized %/s List - by Curtiss - 2013-01-12, 03:40 PM
Summarized %/s List - by JoeTang - 2013-01-13, 08:04 PM
Summarized %/s List - by Problem. - 2013-01-13, 08:45 PM
Summarized %/s List - by MountLag - 2013-01-13, 09:12 PM
Summarized %/s List - by Even - 2013-01-13, 10:11 PM
Summarized %/s List - by ShinkuDragon - 2013-01-13, 10:28 PM
Summarized %/s List - by JoeTang - 2013-01-13, 10:42 PM
Summarized %/s List - by LiquidSwing - 2013-01-13, 10:49 PM
Summarized %/s List - by Even - 2013-01-13, 10:51 PM
Summarized %/s List - by JoeTang - 2013-01-13, 10:57 PM
Summarized %/s List - by Even - 2013-01-13, 10:59 PM
Summarized %/s List - by JoeTang - 2013-01-13, 11:07 PM
Summarized %/s List - by Even - 2013-01-13, 11:10 PM
Summarized %/s List - by LiquidSwing - 2013-01-13, 11:15 PM
Summarized %/s List - by JoeTang - 2013-01-13, 11:27 PM
Summarized %/s List - by IllegallySane - 2013-01-13, 11:39 PM
Summarized %/s List - by ShinkuDragon - 2013-01-14, 02:38 AM
Summarized %/s List - by HellenzSin - 2013-01-14, 02:58 AM
Summarized %/s List - by JoeTang - 2013-01-14, 10:33 AM
Summarized %/s List - by robocup30 - 2013-01-15, 04:25 PM
Summarized %/s List - by SaptaZapta - 2013-01-15, 04:36 PM
Summarized %/s List - by robocup30 - 2013-01-15, 04:44 PM
Summarized %/s List - by MostRichestMaplerHAHAHAHA - 2013-01-15, 05:57 PM
Summarized %/s List - by Mapler - 2013-01-15, 06:48 PM
Summarized %/s List - by ShinkuDragon - 2013-01-16, 02:13 AM
Summarized %/s List - by Elecher - 2013-01-16, 09:34 AM
Summarized %/s List - by JoeTang - 2013-01-16, 11:27 AM
Summarized %/s List - by MountLag - 2013-01-16, 12:03 PM
Summarized %/s List - by MountLag - 2013-01-16, 09:24 PM
Summarized %/s List - by tecul1 - 2013-01-16, 09:57 PM
Summarized %/s List - by MountLag - 2013-01-16, 09:59 PM
Summarized %/s List - by JoeTang - 2013-01-16, 10:07 PM
Summarized %/s List - by tecul1 - 2013-01-16, 10:31 PM
Summarized %/s List - by MountLag - 2013-01-16, 10:45 PM
Summarized %/s List - by JoeTang - 2013-01-16, 11:28 PM
Summarized %/s List - by tacobff - 2013-01-18, 03:11 AM
Summarized %/s List - by Curtiss - 2013-01-18, 03:14 AM
Summarized %/s List - by tacobff - 2013-01-18, 03:20 AM
Summarized %/s List - by Curtiss - 2013-01-18, 03:23 AM
Summarized %/s List - by HellenzSin - 2013-01-18, 03:24 AM
Summarized %/s List - by tacobff - 2013-01-18, 03:25 AM
Summarized %/s List - by Curtiss - 2013-01-18, 03:30 AM
Summarized %/s List - by tacobff - 2013-01-18, 03:46 AM
Summarized %/s List - by DSdavidDS - 2013-01-20, 03:36 AM
Summarized %/s List - by YennoX - 2013-01-20, 05:12 AM
Summarized %/s List - by Bladester - 2013-01-20, 10:00 AM
Summarized %/s List - by fodjgngf - 2013-01-20, 01:56 PM
Summarized %/s List - by Sorien - 2013-01-21, 08:49 PM
Summarized %/s List - by TheBlackMage - 2013-01-22, 09:10 AM
Summarized %/s List - by ShinkuDragon - 2013-01-22, 02:41 PM
Summarized %/s List - by SaptaZapta - 2013-01-22, 02:51 PM
Summarized %/s List - by MountLag - 2013-01-22, 02:57 PM
Summarized %/s List - by ShinkuDragon - 2013-01-22, 03:05 PM
Summarized %/s List - by SaptaZapta - 2013-01-22, 03:33 PM
Summarized %/s List - by ShinkuDragon - 2013-01-22, 03:57 PM
Summarized %/s List - by Takebacker - 2013-01-22, 04:22 PM
Summarized %/s List - by JoeTang - 2013-01-22, 05:09 PM
Summarized %/s List - by ShinkuDragon - 2013-01-22, 06:38 PM
Summarized %/s List - by The Anonymous - 2013-01-24, 09:37 AM
Summarized %/s List - by Curtiss - 2013-01-24, 09:48 AM
Summarized %/s List - by Icedemontrihorn - 2013-01-24, 09:59 AM
Summarized %/s List - by solarforce88 - 2013-01-26, 11:40 AM
Summarized %/s List - by tacobff - 2013-01-26, 05:08 PM
Summarized %/s List - by Dudewitbow - 2013-01-26, 07:31 PM
Summarized %/s List - by tacobff - 2013-01-26, 07:39 PM
Summarized %/s List - by JoeTang - 2013-01-27, 01:29 AM
Summarized %/s List - by Link - 2013-01-30, 06:26 AM
Summarized %/s List - by ignoreme - 2013-01-31, 08:55 AM
Summarized %/s List - by SaptaZapta - 2013-01-31, 09:41 AM
Summarized %/s List - by MountLag - 2013-01-31, 04:20 PM
Summarized %/s List - by tacobff - 2013-02-01, 02:36 PM
Summarized %/s List - by JoeTang - 2013-02-01, 03:28 PM
Summarized %/s List - by tacobff - 2013-02-02, 08:21 PM
Summarized %/s List - by Zuruzuka - 2013-02-06, 03:26 AM
Summarized %/s List - by hadriel - 2013-02-06, 04:21 AM
Summarized %/s List - by Zakaerys - 2013-02-06, 05:31 AM
Summarized %/s List - by Grey - 2013-02-06, 05:53 AM
Summarized %/s List - by Zakaerys - 2013-02-06, 06:12 AM
Summarized %/s List - by Grey - 2013-02-06, 06:21 AM
Summarized %/s List - by DustinxD - 2013-02-06, 07:16 AM
Summarized %/s List - by Dark Link - 2013-02-06, 01:36 PM
Summarized %/s List - by MountLag - 2013-02-06, 01:43 PM
Summarized %/s List - by JoeTang - 2013-02-06, 03:45 PM
Summarized %/s List - by Zakaerys - 2013-02-06, 04:11 PM
Summarized %/s List - by Takebacker - 2013-02-06, 04:13 PM
Summarized %/s List - by DustinxD - 2013-02-06, 04:27 PM
Summarized %/s List - by JoeTang - 2013-02-06, 06:15 PM
Summarized %/s List - by Dark Link - 2013-02-06, 07:38 PM
Summarized %/s List - by Takebacker - 2013-02-06, 07:46 PM
Summarized %/s List - by JoeTang - 2013-02-06, 08:31 PM
Summarized %/s List - by LiquidSwing - 2013-02-09, 06:21 PM
Summarized %/s List - by See - 2013-02-15, 10:22 PM
Summarized %/s List - by JoeTang - 2013-02-16, 02:01 AM
Summarized %/s List - by See - 2013-02-16, 11:13 AM
Summarized %/s List - by Moonlapse - 2013-02-16, 05:48 PM
Summarized %/s List - by JoeTang - 2013-02-17, 01:06 AM
Summarized %/s List - by FabledGumbo - 2013-02-20, 11:03 PM
Summarized %/s List - by firearrow123 - 2013-02-28, 01:14 PM
Summarized %/s List - by Even - 2013-02-28, 01:22 PM
Summarized %/s List - by MountLag - 2013-02-28, 02:27 PM
Summarized %/s List - by DavyJonesx - 2013-03-02, 06:30 AM
Summarized %/s List - by Elecher - 2013-03-02, 12:05 PM
Summarized %/s List - by DavyJonesx - 2013-03-02, 10:48 PM
Summarized %/s List - by Even - 2013-03-03, 02:15 AM
Summarized %/s List - by DavyJonesx - 2013-03-03, 07:30 AM
Summarized %/s List - by HandsFolded - 2013-03-22, 05:20 AM
Summarized %/s List - by JoeTang - 2013-03-24, 10:53 PM
Summarized %/s List - by Curtiss - 2013-03-25, 03:17 AM
Summarized %/s List - by DemonImpact - 2013-03-27, 10:18 AM
Summarized %/s List - by Singaporean - 2013-03-27, 01:38 PM
Summarized %/s List - by OhBaby - 2013-03-27, 04:50 PM
Summarized %/s List - by Encyclopedic - 2013-03-27, 04:52 PM
Summarized %/s List - by dontcrycrucify - 2013-04-02, 11:27 AM
Summarized %/s List - by dontcrycrucify - 2013-04-02, 11:34 AM
Summarized %/s List - by JoeTang - 2013-04-02, 02:54 PM
Summarized %/s List - by Arrol - 2013-04-04, 08:51 PM
Summarized %/s List - by LiquidSwing - 2013-04-04, 09:50 PM
Summarized %/s List - by kyo - 2013-04-07, 03:58 AM
Summarized %/s List - by ChubbiHubbi - 2013-04-10, 06:01 PM
Summarized %/s List - by Takebacker - 2013-04-10, 06:14 PM
Summarized %/s List - by Phoenix - 2013-04-10, 10:08 PM
Summarized %/s List - by JoeTang - 2013-04-10, 10:51 PM
Summarized %/s List - by liort4 - 2013-04-18, 06:52 AM
Summarized %/s List - by Icedemontrihorn - 2013-04-18, 08:11 AM
Summarized %/s List - by GeistesblitZ - 2013-04-21, 10:18 PM
Summarized %/s List - by JoeTang - 2013-04-21, 10:47 PM
Summarized %/s List - by GeistesblitZ - 2013-04-21, 10:57 PM
Summarized %/s List - by Dudewitbow - 2013-04-21, 11:07 PM
Summarized %/s List - by GeistesblitZ - 2013-04-22, 12:07 AM
Summarized %/s List - by Dudewitbow - 2013-04-22, 12:34 AM
Summarized %/s List - by JoeTang - 2013-04-22, 12:47 AM
Summarized %/s List - by MountLag - 2013-04-22, 01:04 AM
Summarized %/s List - by ShinkuDragon - 2013-04-22, 01:15 AM
Summarized %/s List - by GeistesblitZ - 2013-04-22, 01:16 AM
Summarized %/s List - by JoeTang - 2013-04-22, 01:34 AM
Summarized %/s List - by GeistesblitZ - 2013-04-22, 01:50 AM
Summarized %/s List - by Dudewitbow - 2013-04-22, 02:20 AM
Summarized %/s List - by GeistesblitZ - 2013-04-22, 10:31 PM
Summarized %/s List - by JoeTang - 2013-04-22, 10:34 PM
Summarized %/s List - by GeistesblitZ - 2013-04-23, 04:30 AM
Summarized %/s List - by GeistesblitZ - 2013-04-28, 05:41 PM
Summarized %/s List - by JoeTang - 2013-04-28, 05:55 PM
Summarized %/s List - by MuscleWizard - 2013-04-28, 05:56 PM
Summarized %/s List - by Mazz - 2013-04-28, 06:05 PM
Summarized %/s List - by GeistesblitZ - 2013-04-28, 06:40 PM
Summarized %/s List - by JoeTang - 2013-04-28, 07:50 PM
Summarized %/s List - by GeistesblitZ - 2013-04-28, 07:58 PM
Summarized %/s List - by JoeTang - 2013-04-28, 08:16 PM
Summarized %/s List - by Mazz - 2013-04-28, 08:38 PM
Summarized %/s List - by GeistesblitZ - 2013-04-28, 09:48 PM
Summarized %/s List - by GeistesblitZ - 2013-04-30, 10:48 PM
Summarized %/s List - by JoeTang - 2013-04-30, 11:05 PM
Summarized %/s List - by GeistesblitZ - 2013-05-01, 02:17 AM
Summarized %/s List - by noeul - 2013-05-01, 11:37 PM
Summarized %/s List - by JoeTang - 2013-05-01, 11:52 PM
Summarized %/s List - by GeistesblitZ - 2013-05-09, 01:53 AM
Summarized %/s List - by Pythagoras - 2013-05-10, 06:36 AM
Summarized %/s List - by Arrol - 2013-05-10, 07:00 AM
Summarized %/s List - by Pythagoras - 2013-05-10, 11:32 AM
Summarized %/s List - by Mazz - 2013-05-10, 11:58 AM
Summarized %/s List - by Takebacker - 2013-05-10, 01:18 PM
Summarized %/s List - by fodjgngf - 2013-05-10, 07:20 PM
Summarized %/s List - by Mazz - 2013-05-10, 07:54 PM
Summarized %/s List - by JoeTang - 2013-05-10, 08:05 PM
Summarized %/s List - by Mazz - 2013-05-10, 08:34 PM
Summarized %/s List - by frozenkrngod - 2013-05-21, 10:36 AM
Summarized %/s List - by Curtiss - 2013-05-21, 10:44 AM
Summarized %/s List - by frozenkrngod - 2013-05-21, 10:50 AM
Summarized %/s List - by tecul1 - 2013-05-21, 11:14 AM
Summarized %/s List - by Sorien - 2013-05-21, 11:40 AM
Summarized %/s List - by Arrol - 2013-05-23, 12:14 PM
Summarized %/s List - by Curtiss - 2013-05-23, 12:26 PM
Summarized %/s List - by AhYom - 2013-05-23, 12:46 PM
Summarized %/s List - by Swirlly - 2013-05-23, 01:20 PM
Summarized %/s List - by Mazz - 2013-05-23, 01:21 PM
Summarized %/s List - by Swirlly - 2013-05-23, 02:14 PM
Summarized %/s List - by ChronosXIII - 2013-05-23, 03:15 PM
Summarized %/s List - by Dudewitbow - 2013-05-23, 05:10 PM
Summarized %/s List - by ChronosXIII - 2013-05-23, 08:44 PM
Summarized %/s List - by Sorien - 2013-05-24, 12:03 AM
Summarized %/s List - by Etakon - 2013-05-24, 01:07 AM
Summarized %/s List - by Dudewitbow - 2013-05-24, 01:12 AM
Summarized %/s List - by CakesXD - 2013-05-24, 03:09 AM
Summarized %/s List - by Imaginal - 2013-06-02, 09:20 AM
Summarized %/s List - by Untradeable - 2013-06-02, 07:14 PM
Summarized %/s List - by Bribery - 2013-06-02, 07:30 PM
Summarized %/s List - by CakesXD - 2013-06-02, 09:33 PM
Summarized %/s List - by Even - 2013-06-03, 12:49 AM
Summarized %/s List - by Curtiss - 2013-06-03, 05:18 AM
Summarized %/s List - by CakesXD - 2013-06-03, 05:29 AM
Summarized %/s List - by Curtiss - 2013-06-03, 05:38 AM
Summarized %/s List - by holycow - 2013-06-03, 08:51 AM
Summarized %/s List - by Bladester - 2013-06-08, 09:28 AM
Summarized %/s List - by Mazz - 2013-06-08, 09:42 AM
Summarized %/s List - by Bladester - 2013-06-08, 10:18 PM
Summarized %/s List - by mouse1093 - 2013-06-17, 04:51 AM
Summarized %/s List - by JoeTang - 2013-06-17, 06:28 AM
Summarized %/s List - by DaringWaffle - 2013-06-17, 06:45 AM
Summarized %/s List - by Takebacker - 2013-06-17, 02:08 PM
Summarized %/s List - by MountLag - 2013-06-17, 02:51 PM
Summarized %/s List - by GeistesblitZ - 2013-06-19, 12:17 AM
Summarized %/s List - by JoeTang - 2013-06-19, 01:27 AM
Summarized %/s List - by Dudewitbow - 2013-06-19, 02:38 AM
Summarized %/s List - by DaringWaffle - 2013-06-19, 07:14 PM
Summarized %/s List - by MountLag - 2013-06-19, 07:30 PM
Summarized %/s List - by DaringWaffle - 2013-06-19, 09:22 PM
Summarized %/s List - by mouse1093 - 2013-06-19, 11:12 PM
Summarized %/s List - by JoeTang - 2013-06-19, 11:15 PM
Summarized %/s List - by mouse1093 - 2013-06-19, 11:19 PM
Summarized %/s List - by GeistesblitZ - 2013-06-19, 11:43 PM
Summarized %/s List - by Dudewitbow - 2013-06-19, 11:46 PM
Summarized %/s List - by DaringWaffle - 2013-06-19, 11:51 PM
Summarized %/s List - by GeistesblitZ - 2013-06-19, 11:53 PM
Summarized %/s List - by ShinkuDragon - 2013-06-20, 12:40 AM
Summarized %/s List - by furyofdragns - 2013-06-21, 03:42 PM
Summarized %/s List - by Eyon - 2013-06-21, 03:59 PM
Summarized %/s List - by ChronosXIII - 2013-06-21, 04:10 PM
Summarized %/s List - by Pathologiz - 2013-06-22, 02:56 AM
Summarized %/s List - by eragonmagnus - 2013-06-26, 03:39 AM
Summarized %/s List - by ChronosXIII - 2013-06-26, 03:53 AM
Summarized %/s List - by Arrol - 2013-06-26, 03:56 AM
Summarized %/s List - by Dark Link - 2013-06-26, 03:58 AM
Summarized %/s List - by eragonmagnus - 2013-06-26, 04:03 AM
Summarized %/s List - by Chilly - 2013-06-26, 04:22 AM
Summarized %/s List - by VerrKol - 2013-06-26, 04:59 AM
Summarized %/s List - by playboiiz - 2013-06-26, 05:25 AM
Summarized %/s List - by hadriel - 2013-06-26, 05:35 AM
Summarized %/s List - by JoeTang - 2013-06-26, 05:42 AM
Summarized %/s List - by ShinkuDragon - 2013-06-26, 09:21 AM
Summarized %/s List - by MountLag - 2013-06-26, 01:15 PM
Summarized %/s List - by hadriel - 2013-06-26, 01:46 PM
Summarized %/s List - by VerrKol - 2013-06-26, 03:28 PM
Summarized %/s List - by Aggravate - 2013-06-26, 03:36 PM
Summarized %/s List - by JoeTang - 2013-06-26, 05:14 PM
Summarized %/s List - by holycow - 2013-06-27, 06:52 AM
Summarized %/s List - by JoeTang - 2013-06-27, 06:53 AM
Summarized %/s List - by SaptaZapta - 2013-06-27, 10:11 AM
Summarized %/s List - by GeistesblitZ - 2013-06-28, 02:03 AM
Summarized %/s List - by MountLag - 2013-06-28, 05:53 PM
Summarized %/s List - by holycow - 2013-06-29, 12:46 AM
Summarized %/s List - by Takebacker - 2013-06-29, 01:33 AM
Summarized %/s List - by MountLag - 2013-06-29, 02:19 AM
Summarized %/s List - by holycow - 2013-06-29, 02:58 AM
Summarized %/s List - by ShinkuDragon - 2013-06-29, 03:30 AM
Summarized %/s List - by playboiiz - 2013-07-02, 11:27 AM
Summarized %/s List - by landrew831 - 2013-07-03, 11:25 AM
Summarized %/s List - by Arrol - 2013-07-03, 06:22 PM
Summarized %/s List - by EthanB - 2013-07-06, 12:01 PM
Summarized %/s List - by MiracleTrail - 2013-07-06, 12:58 PM
Summarized %/s List - by FlyingGiraffes - 2013-07-09, 01:38 AM
Summarized %/s List - by GeistesblitZ - 2013-07-11, 01:03 PM
Summarized %/s List - by MountLag - 2013-07-11, 01:26 PM
Summarized %/s List - by GeistesblitZ - 2013-07-11, 01:32 PM
Summarized %/s List - by Dudewitbow - 2013-07-11, 01:58 PM
Summarized %/s List - by GeistesblitZ - 2013-07-11, 05:53 PM
Summarized %/s List - by tecul1 - 2013-07-11, 06:55 PM
Summarized %/s List - by prettygreat - 2013-07-30, 06:21 PM
Summarized %/s List - by GeistesblitZ - 2013-08-04, 12:44 AM
Summarized %/s List - by ShinkuDragon - 2013-08-04, 01:16 AM
Summarized %/s List - by FlyingGiraffes - 2013-08-04, 02:25 AM
Summarized %/s List - by JoeTang - 2013-08-04, 03:35 AM
Summarized %/s List - by prettygreat - 2013-08-04, 05:28 AM
Summarized %/s List - by JoeTang - 2013-08-04, 06:09 AM
Summarized %/s List - by prettygreat - 2013-08-04, 06:19 AM
Summarized %/s List - by UltimaSteele - 2013-08-04, 07:25 AM
Summarized %/s List - by prettygreat - 2013-08-04, 07:46 AM
Summarized %/s List - by DSdavidDS - 2014-06-26, 01:50 AM
Summarized %/s List - by Takebacker - 2014-06-26, 01:56 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)