Use ulti at level 1 menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 44
  1. #16
    fearlesskiller's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kazique View Post
    Use bol and download the script:

    Bilbao, on 21 Oct 2014 - 12:16 PM, said:
    Was yesterday around leakfest but some devs dont use it or just missed it:
    i put it into a little script for the lazy1's like me
    function OnLoad()
    Menu = scriptConfig("BUFF EXPLOIT", "bol")
    Menu:addParam("Spell", "SPELL", SCRIPT_PARAM_LIST, 1, { "_Q", "_W", "_E", "_R" })
    Menu:addParam("Target", "Target: SELECTED", SCRIPT_PARAM_INFO, "")
    addparam("key", "hotekey", Script_param_onkeydown, true, 1) tomenu:addparam("key", "hotekey", Script_param_onkeydown, true, 32)
    end

    function OnTick()
    if Menu.Key then
    local t = GetTarget()
    if myHero:CanUseSpell(Menu.Spell-1) == READY and t and t.valid and t.networkID then
    local c = CLoLPacket(0x9A)
    c:EncodeF(myHero.networkID)
    c:Encode1(232)
    c:Encode1(Menu.Spell - 1)
    c:Encode4(t.x)
    c:Encode4(t.y)
    c:Encode4(t.x)
    c:Encode4(t.y)
    c:EncodeF(t.networkID)
    SendPacket(c)
    end
    end


    (you need to be VIP on bol)

    Once your ingame with your ashe you target someone (brand of fiora for example) Hold down Shift (bol menu) while pressing Space (if it worked you will see the one you did it on will now have buff called "Frost Shock" and you can rape everyone now xD

    (thanks to T0mm who fixed the script and Fumí who reportred this as the first person here on ownedcore)


    Spell exploit / disabler - Champion - LeagueSharp here is a small list on whats working..

    so i buy vip, put in custom script then enable it?

    Use ulti at level 1
  2. #17
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fearlesskiller View Post
    so i buy vip, put in custom script then enable it?
    Yes pretty much, once your ingame and BoL has loaded, you target anyone, and press shift + spacebar

  3. #18
    karkarias's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Getting errors on line 8/9.. tried editing but no luck.. any help appreciated. I want to beat the tutorial ffs ;/

    No shift menu either ;o

  4. #19
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by karkarias View Post
    Getting errors on line 8/9.. tried editing but no luck.. any help appreciated. I want to beat the tutorial ffs ;/
    Sorry, fixed.

  5. #20
    karkarias's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Fumi View Post
    Sorry, fixed.
    That was insane response time ;o I'm not getting errors but it's not giving the buff to brand.. maybe I'm doing something wrong? :S

    Wait still getting error ;s

    http://prntscr.com/4yrqiz

  6. #21
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by karkarias View Post
    That was insane response time ;o I'm not getting errors but it's not giving the buff to brand.. maybe I'm doing something wrong? :S
    hold shift, and the BoL menu should appear, now target brand and press space.

    Edit: i dual screen wow and ownedcore, so it pops up when you write to my thread

  7. #22
    karkarias's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not getting any BoL menu, I disabled all scripts aside from the

    function OnLoad()
    Menu = scriptConfig("BUFF EXPLOIT", "bol")
    Menu:addParam("Spell", "SPELL", SCRIPT_PARAM_LIST, 1, { "_Q", "_W", "_E", "_R" })
    Menu:addParam("Target", "Target: SELECTED", SCRIPT_PARAM_INFO, "")
    Menu:addParam("Key", "HotKey", SCRIPT_PARAM_ONKEYDOWN, false, 32)
    end

    function OnTick()
    if Menu.Key then
    local t = GetTarget()
    if myHero:CanUseSpell(Menu.Spell-1) == READY and t and t.valid and t.networkID then
    local c = CLoLPacket(0x9A)
    c:EncodeF(myHero.networkID)
    c:Encode1(232)
    c:Encode1(Menu.Spell - 1)
    c:Encode4(t.x)
    c:Encode4(t.y)
    c:Encode4(t.x)
    c:Encode4(t.y)
    c:EncodeF(t.networkID)
    SendPacket(c)
    end
    end
    end

    GOT IT WORKING I LOVE YOU
    Last edited by karkarias; 10-22-2014 at 05:32 PM.

  8. #23
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by karkarias View Post
    I'm not getting any BoL menu, I disabled all scripts aside from the

    function OnLoad()
    Menu = scriptConfig("BUFF EXPLOIT", "bol")
    Menu:addParam("Spell", "SPELL", SCRIPT_PARAM_LIST, 1, { "_Q", "_W", "_E", "_R" })
    Menu:addParam("Target", "Target: SELECTED", SCRIPT_PARAM_INFO, "")
    Menu:addParam("Key", "HotKey", SCRIPT_PARAM_ONKEYDOWN, false, 32)
    end

    function OnTick()
    if Menu.Key then
    local t = GetTarget()
    if myHero:CanUseSpell(Menu.Spell-1) == READY and t and t.valid and t.networkID then
    local c = CLoLPacket(0x9A)
    c:EncodeF(myHero.networkID)
    c:Encode1(232)
    c:Encode1(Menu.Spell - 1)
    c:Encode4(t.x)
    c:Encode4(t.y)
    c:Encode4(t.x)
    c:Encode4(t.y)
    c:EncodeF(t.networkID)
    SendPacket(c)
    end
    end
    end
    pm me your skype

  9. #24
    GameHackerPM's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys, are you sure that this is working? I can buy BoL now and try this! Are you sure?!

  10. #25
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHackerPM View Post
    Guys, are you sure that this is working? I can buy BoL now and try this! Are you sure?!
    im doing it right now

  11. #26
    Thescruu's Avatar Member CoreCoins Purchaser
    Reputation
    4
    Join Date
    Dec 2012
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's a shame i dont want to get banned, would love to try.

  12. #27
    GameHackerPM's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    BOUGHT and tried ... just tell me what should i do. as i tried to use it with fiora .. but not working!!!

  13. #28
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GameHackerPM View Post
    BOUGHT and tried ... just tell me what should i do. as i tried to use it with fiora .. but not working!!!
    %appdata% delete BoL.
    run only this script.
    get ingame with YOU playing ashe not your friend
    level Q as ashe at level 1
    press SHIFT + SPACE while TARGETING fiora/brand etc


    If this fails pm me your skype

  14. #29
    Augury13's Avatar Legendary
    Reputation
    884
    Join Date
    Oct 2012
    Posts
    1,738
    Thanks G/R
    424/74
    Trade Feedback
    7 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Fumi View Post
    %appdata% delete BoL.
    run only this script.
    get ingame with YOU playing ashe not your friend
    level Q as ashe at level 1
    press SHIFT + SPACE while TARGETING fiora/brand etc


    If this fails pm me your skype
    I can vouch for this statement, he just proved to me. +6 for posting here !

  15. #30
    GameHackerPM's Avatar Member
    Reputation
    1
    Join Date
    Oct 2014
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Fumi View Post
    %appdata% delete BoL.
    run only this script.
    get ingame with YOU playing ashe not your friend
    level Q as ashe at level 1
    press SHIFT + SPACE while TARGETING fiora/brand etc


    If this fails pm me your skype
    Well, with ashe i got the buff in the traget, but don't know what should i do or what did i get after that?! can't see anything new or different!

    + i can't do it with fiora or others...

    PM me Skype : GameHackerPM

    Waiting for you dude, nice.. added reputation!

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Guide] Gold using mining + blacksmithing + level fishing and cooking
    By Thomja in forum World of Warcraft Guides
    Replies: 8
    Last Post: 05-21-2010, 11:06 AM
  2. [Guide] Using Addons To Level.
    By Kissy in forum World of Warcraft Guides
    Replies: 11
    Last Post: 09-11-2008, 06:04 AM
  3. Replies: 15
    Last Post: 07-22-2008, 07:38 AM
  4. Use teleporting to level faster.
    By thatonenoob in forum World of Warcraft Guides
    Replies: 11
    Last Post: 07-06-2008, 09:16 AM
  5. Replies: 79
    Last Post: 02-12-2008, 11:31 PM
All times are GMT -5. The time now is 10:48 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search