I'm speechless, this is the most simple yet complex idea I ever heard to improve. Thanks a lot for that one. Pretty sure that will improve my gameplay a lot.
Ah yes, by the time your brought up the notepad, I might've already gone a bit overboard: create or replace trigger wave_mgmt after update of lane_waves on assigned_lane for each row begin dbms_output.put_line("What do I do with this wave?"); end; / create or replace trigger middle_point after update of position on assigned_lane for each row begin if :new.position > 2 then dbms_output.put_line("I'm over the half point, where do I need vision, which side should I lean"); end if; end; / create or replace trigger midgame_lane_assignment after update of position on assigned_lane for each row declare game_time number; begin select clock into game_time from timers; if (:new.position = 0 and game_time >= 14) then dbms_output.put_line("Where should I be going from base?"); end if; end; / create or replace trigger herald_base after update of clock on timers for each row declare game_time number; begin select clock into game_time from timers; if game_time = 7 then dbms_output.put_line("Herald spawns in one minute, I should look to base"); end if; end; /
Thank you for these videos! I don’t have a lot of time to spam league anymore, but I still love league, and your insights into it made me really appreciate how difficult it is, and how much I have to learn. (I also started playing sc2 and it’s crazy how mindlessly I was playing lol before hand.) You have a great way of simplifying the complex problems we face in game.
I actually think this is incredibly useful. I hope I'm not the only one that has at times gotten to lane, and realized "I'm just siting here waiting for something to happen, what am I supposed to be doing right now?.." It's easy to mentally check out and just wait for something to happen.
The idea of trigger actions to re-prioritize is something i've been doing for a long time. It's probably the best way to get new habits started up. Especially when someone isn't asking that question at all. My best example was one you also mentioned. When placing a ward, what side should I hug. Except mine is, when going to place a ward, where do I expect to be ganked from? Helped me prevent being ganked while placing the ward. Then keeps me hugging either the ward or my jg.
my most relevant triggers is whenever I recognize a teamfight as won, before even finishing off the enemies I ask mtself: which lane to run at and push to end/take inib? and spam ping nash if we can. another triggers that is pretty common in toplane is whenever you plan on slow pushing and fight/dive, you want to ward first. And boom boom triggers on triggers, before warding, you want to check if you know enemy jungler position, in which case the ward might not be relevant. And a useful trigger that I wish I could have is to consider changing trinket whenever I base, not often useful in top but it really hurts me to keep my yellow wards whenever I play supp.
I'm speechless, this is the most simple yet complex idea I ever heard to improve.
Thanks a lot for that one.
Pretty sure that will improve my gameplay a lot.
Did it?
Me and my friends have named this exact thing BPM (Brain Per Minute) xD
haha I like that!
lol that a great name for it ! :D
your channel is fking crazy man, amazing quality on real impactful topics that no one has ever covered in yt at this lvl. keep it up! :)
You just have to choose whether you wan't to be angry with the game all the time or never again, and choose to be relaxed playing it
Amazing concept! I've decided to do this but at a lower level. This will make me create a system for it over the long haul. Thanks
Ah yes, by the time your brought up the notepad, I might've already gone a bit overboard:
create or replace trigger wave_mgmt
after update of lane_waves on assigned_lane
for each row
begin
dbms_output.put_line("What do I do with this wave?");
end;
/
create or replace trigger middle_point
after update of position on assigned_lane
for each row
begin
if :new.position > 2
then
dbms_output.put_line("I'm over the half point, where do I need vision, which side should I lean");
end if;
end;
/
create or replace trigger midgame_lane_assignment
after update of position on assigned_lane
for each row
declare
game_time number;
begin
select clock into game_time from timers;
if (:new.position = 0 and game_time >= 14)
then
dbms_output.put_line("Where should I be going from base?");
end if;
end;
/
create or replace trigger herald_base
after update of clock on timers
for each row
declare
game_time number;
begin
select clock into game_time from timers;
if game_time = 7
then
dbms_output.put_line("Herald spawns in one minute, I should look to base");
end if;
end;
/
mans a robot
Thank you for these videos! I don’t have a lot of time to spam league anymore, but I still love league, and your insights into it made me really appreciate how difficult it is, and how much I have to learn. (I also started playing sc2 and it’s crazy how mindlessly I was playing lol before hand.) You have a great way of simplifying the complex problems we face in game.
This helps a lot with not playing on autopilot and making conscious decisions
Thanks 👌🏼
Such a great video for a highly important topic for climbing! Really well done Shok!
your content is really underrated please dont stop keep going
I actually think this is incredibly useful. I hope I'm not the only one that has at times gotten to lane, and realized "I'm just siting here waiting for something to happen, what am I supposed to be doing right now?.." It's easy to mentally check out and just wait for something to happen.
The idea of trigger actions to re-prioritize is something i've been doing for a long time. It's probably the best way to get new habits started up. Especially when someone isn't asking that question at all. My best example was one you also mentioned. When placing a ward, what side should I hug. Except mine is, when going to place a ward, where do I expect to be ganked from? Helped me prevent being ganked while placing the ward. Then keeps me hugging either the ward or my jg.
This is great stuff, thanks for sharing.
my most relevant triggers is whenever I recognize a teamfight as won, before even finishing off the enemies I ask mtself:
which lane to run at and push to end/take inib? and spam ping nash if we can.
another triggers that is pretty common in toplane is whenever you plan on slow pushing and fight/dive, you want to ward first. And boom boom triggers on triggers, before warding, you want to check if you know enemy jungler position, in which case the ward might not be relevant.
And a useful trigger that I wish I could have is to consider changing trinket whenever I base, not often useful in top but it really hurts me to keep my yellow wards whenever I play supp.
not think more, but think right thing at right times ;)
Gotta love the ole shok notepad
love you man
just remind me to rewatch this video tomorrow before i play ;)
can u do an in-depth Taliyah Guide ?
Ye
my mental apm is 0 i have brain damage
Nice video