Jump to content

Welcome to Gaming On Steroids Forums
Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, post status updates, manage your profile and so much more. This message will be removed once you have signed in.
Login to Account Create an Account
Photo

[library/script] simple ward jump

library ward jump

Best Answer ilovesona , 02 February 2016 - 01:46

update

2016.02.02: remove OnObjectLoop coz it's got removed

Go to the full post »


  • Please log in to reply
119 replies to this topic

#1
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

This is a library/script for ward jump, you can use it as a standalone script or a lib
 
Feature:

  • ward jump Doge
  • support champion: LeeSin, Katarina, Jax
  • support jump target : ward, hero, minion, and any targetable object, it won't put ward if there is exist jump target.
  • prevent cast ward in the wall cause fail ward jump
  • jump to max ward cast range if your mouse pos exceed cast range
  • draw ward range
  • menu config option: jump hotkey, detect wall or not(you can disable it if you don't like :dogecry: ) and debug mode

Download:
simple ward jump.lua
https://github.com/i...e ward jump.lua
installtogos.jpg 

Requirement:
DLib
http://gamingonstero...ry-dlib-rework/
 
Wall Functions
http://gamingonstero...summoners-rift/
put all files into Common
 
Usage:
 
use Z key to jump, you can change it in menu
 
Change log:

2016.02.02: remove OnObjectLoop coz it's got removed

2015.11.17: add draw ward range, update pre-S6 ward item

2015.10.26: update to new api(rip OnLoop)
2015.10.04: fix api, fix OnDeleteObj bug
2015.09.13: add menu, fix hero not in jump target bug, code rework
2015.08.28: improve the fps with new api
 
 
API(for dev only):


pos = {
  x=2324,
  y=95,
  z=1800
}
wardJump(pos)

 

This api will jump to the max ward cast position if the pos exceed it, you need check the range between your hero and the pos before call the api, except you don't care. KappaHD


Edited by ilovesona, 02 February 2016 - 01:46 .

  • 6

#2
Cloud

Cloud

    KAPPA

  • Ex-Staff
  • PipPipPip
  • 1,498 posts

Good job!


  • 0

#3
Tiritto

Tiritto

    Script Developer

  • Members
  • 377 posts
  • LocationPoland

Simple yet wonderful library. You deserve more upvotes! ^^


  • 0

#4
bernardjolly

bernardjolly

    Advanced Member

  • Members
  • 45 posts

How to change the key binding? I want to make it to something different.


  • 0

#5
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

How to change the key binding? I want to make it to something different.

I'm sorry, not support yet...

 

You need edit the source code by yourself.

 

it's in line 151

if KeyIsDown(string.byte("Z")) then
  wardJump(mousePos)
end

Just change the "Z" to other key you want, gl.


  • 0

#6
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

update:

2015.08.28: improve the fps with new api


  • 0

#7
furadam

furadam

    Member

  • Members
  • 10 posts

HELP ME PLEASE!!!!

8qH4P5.png


  • 0

#8
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

HELP ME PLEASE!!!!

8qH4P5.png

stop cross post....

 

just delete the require('AutoLvlUp') from your testscript1.lua


  • 0

#9
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

update:

2015.09.13: add menu, fix hero not in jump target bug, code rework


  • 0

#10
earf

earf

    Member

  • Members
  • 23 posts
  • LocationFrance

642027wardj.jpg

 

 

 

my script is Wardj.lua just because i rename it. But apparently there is a probleme with MapPosition. I get it update from today.


  • 0

#11
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

642027wardj.jpg

 

 

 

my script is Wardj.lua just because i rename it. But apparently there is a probleme with MapPosition. I get it update from today.

you need wall lib, check the requirement in the first post...


  • -1

#12
earf

earf

    Member

  • Members
  • 23 posts
  • LocationFrance

you need wall lib, check the requirement in the first post...

U think i'm retard? u don't even read my post properly i said i had update the mapostion and wall lib from the day. Aniway someone else helped me..


  • 0

#13
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

U think i'm retard? u don't even read my post properly i said i had update the mapostion and wall lib from the day. Aniway someone else helped me..

well, coz this is the most reason may cause that error

 

and i don't even know who you are...


  • 0

#14
Silverburg

Silverburg

    Advanced Member

  • Members
  • 43 posts

Update pwease  :dogecry:


  • 0

#15
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

Update pwease  :dogecry:

what? this script work well :popcorn:​ 


  • 0

#16
Silverburg

Silverburg

    Advanced Member

  • Members
  • 43 posts

now it works .. i have to put require('simple ward jump') to make it work :P


  • 0

#17
Shalvaid

Shalvaid

    Newbie

  • Members
  • 1 posts

I can't seem to make it work using it as a library / api

OnLoop(function(myHero)
  If KeyIsDown(74) then   -- j key #74
    wardJump(Point(2324, 95, 1800)) -- nexus turret blue side (bottom)
  end
end)

It places the ward but it just doesn't jump... I've been trying to figure out the error without any luck so far... Do you have any idea on what may be causing this behavior?

 

It works amazingly well as a script,

Thanks a lot.

 

EDIT: I think it's something related to Y coordinate


  • 1

#18
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

I can't seem to make it work using it as a library / api

OnLoop(function(myHero)
  If KeyIsDown(74) then   -- j key #74
    wardJump(Point(2324, 95, 1800)) -- nexus turret blue side (bottom)
  end
end)

It places the ward but it just doesn't jump... I've been trying to figure out the error without any luck so far... Do you have any idea on what may be causing this behavior?

 

It works amazingly well as a script,

Thanks a lot.

 

EDIT: I think it's something related to Y coordinate

idk what Point is, it seems not part of API? if you want custom pos, use table instead

pos = {
  x=2324,
  y=95,
  z=1800
}

 

and there is some bug in api mode, try this one instead

https://raw.githubus...e ward jump.lua

 

it's dev version, tell me it work or not so I can released it

 

thx for feedback :)  


  • 0

#19
BaeSuzy

BaeSuzy

    Advanced Member

  • Members
  • 388 posts
  • LocationBae Suzy

kuo1M.jpg
Lee sin W error

Jax Q working
Kat E working

 


  • 1

#20
ilovesona

ilovesona

    Sona's wife

  • Contributor
  • 1,096 posts

kuo1M.jpg

try disable detect wall in menu until I fix this problem


  • 0





Also tagged with one or more of these keywords: library, ward jump

3 user(s) are reading this topic

0 members, 3 guests, 0 anonymous users