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

[LB SERIES] [Lib Collection] ¤₹៛₪ [Wall Functions] [Face Detection] [CreepBlock] [MinionCollision] [Update 25.04]


  • This topic is locked This topic is locked
203 replies to this topic

#181
Empoleon

Empoleon

    Member

  • Members
  • 18 posts

And here after new update i`v got the following error

MapPosition.lua:370: function arguments expected near `return`

Here is fixed version of MapPosition.lua 

Basically you need to change 

local f = io.open(path, "r") if f ~= nil then f:close return true else return false end

to

local f = io.open(path, "r") if f ~= nil then f:close() return true else return false end

  • 0

#182
Maxxxel

Maxxxel

    The One

  • Scripts Developer
  • 1,196 posts
  • LocationGuess the right City to win 10$
fixed
  • 0

#183
MockingBirds1

MockingBirds1

    Advanced Member

  • Members
  • 37 posts

What is the Problem?

 

http://i.hizliresim.com/A507Zq.png


  • 0

#184
Maxxxel

Maxxxel

    The One

  • Scripts Developer
  • 1,196 posts
  • LocationGuess the right City to win 10$

What is the Problem?

 

http://i.hizliresim.com/A507Zq.png

restart Gos Loader. it should work


  • 0

#185
BaranxDK1

BaranxDK1

    Member

  • Members
  • 14 posts

hey  dude i got a BIG problem :( its about one of your libs it says 510 is having a problem :(


  • 0

#186
Maxxxel

Maxxxel

    The One

  • Scripts Developer
  • 1,196 posts
  • LocationGuess the right City to win 10$

well that wont help me, pls tell me exact description or make a screenie


  • 0

#187
patrickpogi0047

patrickpogi0047

    Advanced Member

  • Members
  • 34 posts
  • LocationEarth

How do I draw walls in-game?

I don't see the drawings on walls

plz help  :(


  • 0

#188
Maxxxel

Maxxxel

    The One

  • Scripts Developer
  • 1,196 posts
  • LocationGuess the right City to win 10$

How do I draw walls in-game?

I don't see the drawings on walls

plz help  :(

read first post??


  • 0

#189
MasterKillerGLK

MasterKillerGLK

    Member

  • Members
  • 17 posts

im getting alot of errors after going inside a game i cant take pictures but i can write it down.

 

[ERROR LOADING LUA] ...ata\Roaming\GamingOnSteroids\LOL\Scripts\MapPotistion.lua:510 C:\Users\Master\AppData\Roaming\Gamin

 

And then it goes off the screen please help


  • 0

#190
Empoleon

Empoleon

    Member

  • Members
  • 18 posts

im getting alot of errors after going inside a game i cant take pictures but i can write it down.

 

[ERROR LOADING LUA] ...ata\Roaming\GamingOnSteroids\LOL\Scripts\MapPotistion.lua:510 C:\Users\Master\AppData\Roaming\Gamin

 

And then it goes off the screen please help

Try to put MapPosition.lua in your common folder and make sure that it is the only copy of MapPosition.lua in your Appdata folder


  • 0

#191
MasterKillerGLK

MasterKillerGLK

    Member

  • Members
  • 17 posts

ok

 

EDIT: Im getting the same error after moving MapPosition.lua in the common folder and i made sure there was no copy of it in appdata


  • 0

#192
MasterKillerGLK

MasterKillerGLK

    Member

  • Members
  • 17 posts

Try to put MapPosition.lua in your common folder and make sure that it is the only copy of MapPosition.lua in your Appdata folder

what about MapPositionGOS.lua

 


  • 0

#193
darkbomb

darkbomb

    Newbie

  • Members
  • 3 posts

tjNwIap.jpg

Does any one know why I'm getting this error when i try to use this vayne script?


  • 0

#194
DracoTomes

DracoTomes

    Newbie

  • Members
  • 3 posts

http://imgur.com/cUl5GdH

 

what is the case here?


  • 0

#195
afazli

afazli

    Member

  • Members
  • 14 posts

2d geometry update pls.


  • 0

#196
PuiYi

PuiYi

    Newbie

  • Premium
  • 9 posts

Need to update the mapPositionGOS in 6.2 ??


  • 0

#197
Maxxxel

Maxxxel

    The One

  • Scripts Developer
  • 1,196 posts
  • LocationGuess the right City to win 10$

I am back, i will update all my Scripts in the next days.


  • 1

#198
thedire1

thedire1

    Member

  • Members
  • 18 posts
  • LocationEgypt

I am back, i will update all my Scripts in the next days.

welcome back maxxxel , we really missed your creativity scripts  :D 


  • 0

#199
Maxxxel

Maxxxel

    The One

  • Scripts Developer
  • 1,196 posts
  • LocationGuess the right City to win 10$
Collision.lua updated

If u get Collision.lua error again be sure that Gos didn't automatically update the version with the old one. It takes some time till new files come with gos loader so check it after each start of gos.

--New files in Gos now
  • 0

#200
r3dhat

r3dhat

    Member

  • Members
  • 25 posts

Hi Maxxxel,

 

I think we get some typo bugs at line 943, 949 and 955 in file MapPositionGOS.lua

function MapPosition:onTopLane(unit)
		unitPoint = Point(unit.x, unit.z)

		return regions["leftTopLane"]:contains(unitPoint) or regions["centerTopLane"]:contains(unitPoint) or regions["rightTopLane"]:__contains(unitPoint)
	end

	function MapPosition:onMidLane(unit)
		unitPoint = Point(unit.x, unit.z)

		return regions["leftMidLane"]:contains(unitPoint) or regions["centerMidLane"]:contains(unitPoint) or regions["rightMidLane"]:__contains(unitPoint)
	end

	function MapPosition:onBotLane(unit)
		unitPoint = Point(unit.x, unit.z)

		return regions["leftBotLane"]:contains(unitPoint) or regions["centerBotLane"]:contains(unitPoint) or regions["rightBotLane"]:__contains(unitPoint)
	end

Change to

function MapPosition:onTopLane(unit)
		unitPoint = Point(unit.x, unit.z)

		return regions["leftTopLane"]:__contains(unitPoint) or regions["centerTopLane"]:__contains(unitPoint) or regions["rightTopLane"]:__contains(unitPoint)
	end

	function MapPosition:onMidLane(unit)
		unitPoint = Point(unit.x, unit.z)

		return regions["leftMidLane"]:__contains(unitPoint) or regions["centerMidLane"]:__contains(unitPoint) or regions["rightMidLane"]:__contains(unitPoint)
	end

	function MapPosition:onBotLane(unit)
		unitPoint = Point(unit.x, unit.z)

		return regions["leftBotLane"]:__contains(unitPoint) or regions["centerBotLane"]:__contains(unitPoint) or regions["rightBotLane"]:__contains(unitPoint)
	end

  • 0




2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users