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

#201
Maxxxel

Maxxxel

    The One

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

 

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

Fixed, Ty


  • 1

#202
r3dhat

r3dhat

    Member

  • Members
  • 25 posts

Editted: Not a bug!


  • 0

#203
Maxxxel

Maxxxel

    The One

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

Editted: Not a bug!

what? :D


  • 0

#204
teckseng

teckseng

    Newbie

  • Members
  • 1 posts

can anyone teach me how to download it idk how 


  • 0




3 user(s) are reading this topic

0 members, 3 guests, 0 anonymous users