<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Help]]></title><description><![CDATA[<p dir="auto">Some scriptapi v1 scripts are not working on b72 / b73 help</p>
]]></description><link>https://forum.liquidbounce.net/topic/90/help</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Jul 2026 16:02:07 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/90.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 27 Jun 2020 12:26:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Help on Tue, 30 Jun 2020 03:06:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aftery" aria-label="Profile: Aftery">@<bdi>Aftery</bdi></a> said in <a href="/post/383">Help</a>:</p>
<blockquote>
<p dir="auto">does it work on b71 then</p>
</blockquote>
<p dir="auto">no</p>
]]></description><link>https://forum.liquidbounce.net/post/390</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/390</guid><dc:creator><![CDATA[ChocoPie_isme]]></dc:creator><pubDate>Tue, 30 Jun 2020 03:06:22 GMT</pubDate></item><item><title><![CDATA[Reply to Help on Sat, 27 Jun 2020 21:51:26 GMT]]></title><description><![CDATA[<p dir="auto">//Function by Scorpion3013</p>
]]></description><link>https://forum.liquidbounce.net/post/382</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/382</guid><dc:creator><![CDATA[Gabriel]]></dc:creator><pubDate>Sat, 27 Jun 2020 21:51:26 GMT</pubDate></item><item><title><![CDATA[Reply to Help on Sat, 27 Jun 2020 17:00:56 GMT]]></title><description><![CDATA[<p dir="auto">why am i the script author????</p>
]]></description><link>https://forum.liquidbounce.net/post/373</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/373</guid><dc:creator><![CDATA[scorpion3013]]></dc:creator><pubDate>Sat, 27 Jun 2020 17:00:56 GMT</pubDate></item><item><title><![CDATA[Reply to Help on Sat, 27 Jun 2020 15:33:23 GMT]]></title><description><![CDATA[<p dir="auto">@gabrielvicenteYT said in <a href="/post/370">Help</a>:</p>
<blockquote>
<pre><code>var scriptName = "TargetStrafe"
var scriptAuthor = "Scorpion3013"
var scriptVersion = 1.0

var EntityPlayer = Java.type('net.minecraft.entity.player.EntityPlayer');
var AntiBot = Java.type("net.ccbluex.liquidbounce.features.module.modules.misc.AntiBot")
var LiquidBounce = Java.type("net.ccbluex.liquidbounce.LiquidBounce");
var Teams = Java.type("net.ccbluex.liquidbounce.features.module.modules.misc.Teams");//Thank Nvaros



function getClosestEntity() {  //Function by Scorpion3013
	var filteredEntites = []
	for (var i in mc.theWorld.loadedEntityList) {
		var entity = mc.theWorld.loadedEntityList[i]
		if (entity instanceof EntityPlayer &amp;&amp; entity != mc.thePlayer) {
			filteredEntites.push(entity)
		}
	}
	filteredEntites.sort(function (a, b) {
		var distanceA = mc.thePlayer.getDistanceToEntity(a)
		var distanceB = mc.thePlayer.getDistanceToEntity(b)
		return distanceB - distanceA;
	})
	return filteredEntites[filteredEntites.length - 1]
}

function TargetStrafe() {
	var distance0 = value.createFloat("Distance", 2.5, 1.0, 4.00)
	var motionXZ = value.createFloat("MotionXZ" , 0.28, 0.01, 0.60)
	
    this.getName = function() {
        return "GayStrafe"
    }
    this.getDescription = function() {
        return "Fart Sex"
    }
    this.getCategory = function() {
        return "Fun"
    }
    this.onEnable = function() {
    }
    this.onDisable = function() {
     
    }
	this.addValues = function(values) {
		values.add(distance0)
		values.add(motionXZ)
	}	
	this.onUpdate = function() {
        var player = getClosestEntity()
		if(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)) != 0) {
		var c1 = (mc.thePlayer.posX - player.posX)/(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)))
		var s1 = (mc.thePlayer.posZ - player.posZ)/(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)))
		if(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)) &lt;= distance0.get() &amp;&amp; !AntiBot.isBot(player) &amp;&amp; !player.isDead &amp;&amp; !LiquidBounce.moduleManager.getModule(Teams.class).isInYourTeam(player)) {
			if(mc.gameSettings.keyBindLeft.pressed) {
			    mc.thePlayer.motionX = -motionXZ.get()*s1 - 0.18*motionXZ.get()*c1
			    mc.thePlayer.motionZ = motionXZ.get()*c1 - 0.18*motionXZ.get()*s1
			}else {
                mc.thePlayer.motionX = motionXZ.get()*s1 - 0.18*motionXZ.get()*c1
			    mc.thePlayer.motionZ = -motionXZ.get()*c1 - 0.18*motionXZ.get()*s1
			}
		}
		}
	}
}
var Module = new Module()
var ModuleClient

function onLoad() {}

function onEnable() {
    ModuleClient = moduleManager.registerModule(TargetStrafe)
}

function onDisable() {
    moduleManager.unregisterModule(ModuleClient)
}
</code></pre>
</blockquote>
<p dir="auto">var Module = new Module()<br />
change it to var TargetStrafe = new TargetStrafe() or else it won't register the script</p>
]]></description><link>https://forum.liquidbounce.net/post/371</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/371</guid><dc:creator><![CDATA[ChocoPie_isme]]></dc:creator><pubDate>Sat, 27 Jun 2020 15:33:23 GMT</pubDate></item><item><title><![CDATA[Reply to Help on Sat, 27 Jun 2020 14:45:12 GMT]]></title><description><![CDATA[<pre><code>var scriptName = "TargetStrafe"
var scriptAuthor = "Scorpion3013"
var scriptVersion = 1.0

var EntityPlayer = Java.type('net.minecraft.entity.player.EntityPlayer');
var AntiBot = Java.type("net.ccbluex.liquidbounce.features.module.modules.misc.AntiBot")
var LiquidBounce = Java.type("net.ccbluex.liquidbounce.LiquidBounce");
var Teams = Java.type("net.ccbluex.liquidbounce.features.module.modules.misc.Teams");//Thank Nvaros



function getClosestEntity() {  //Function by Scorpion3013
	var filteredEntites = []
	for (var i in mc.theWorld.loadedEntityList) {
		var entity = mc.theWorld.loadedEntityList[i]
		if (entity instanceof EntityPlayer &amp;&amp; entity != mc.thePlayer) {
			filteredEntites.push(entity)
		}
	}
	filteredEntites.sort(function (a, b) {
		var distanceA = mc.thePlayer.getDistanceToEntity(a)
		var distanceB = mc.thePlayer.getDistanceToEntity(b)
		return distanceB - distanceA;
	})
	return filteredEntites[filteredEntites.length - 1]
}

function TargetStrafe() {
	var distance0 = value.createFloat("Distance", 2.5, 1.0, 4.00)
	var motionXZ = value.createFloat("MotionXZ" , 0.28, 0.01, 0.60)
	
    this.getName = function() {
        return "GayStrafe"
    }
    this.getDescription = function() {
        return "Fart Sex"
    }
    this.getCategory = function() {
        return "Fun"
    }
    this.onEnable = function() {
    }
    this.onDisable = function() {
     
    }
	this.addValues = function(values) {
		values.add(distance0)
		values.add(motionXZ)
	}	
	this.onUpdate = function() {
        var player = getClosestEntity()
		if(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)) != 0) {
		var c1 = (mc.thePlayer.posX - player.posX)/(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)))
		var s1 = (mc.thePlayer.posZ - player.posZ)/(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)))
		if(Math.sqrt(Math.pow(mc.thePlayer.posX - player.posX,2) + Math.pow(mc.thePlayer.posZ - player.posZ,2)) &lt;= distance0.get() &amp;&amp; !AntiBot.isBot(player) &amp;&amp; !player.isDead &amp;&amp; !LiquidBounce.moduleManager.getModule(Teams.class).isInYourTeam(player)) {
			if(mc.gameSettings.keyBindLeft.pressed) {
			    mc.thePlayer.motionX = -motionXZ.get()*s1 - 0.18*motionXZ.get()*c1
			    mc.thePlayer.motionZ = motionXZ.get()*c1 - 0.18*motionXZ.get()*s1
			}else {
                mc.thePlayer.motionX = motionXZ.get()*s1 - 0.18*motionXZ.get()*c1
			    mc.thePlayer.motionZ = -motionXZ.get()*c1 - 0.18*motionXZ.get()*s1
			}
		}
		}
	}
}
var Module = new Module()
var ModuleClient

function onLoad() {}

function onEnable() {
    ModuleClient = moduleManager.registerModule(TargetStrafe)
}

function onDisable() {
    moduleManager.unregisterModule(ModuleClient)
}
</code></pre>
]]></description><link>https://forum.liquidbounce.net/post/370</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/370</guid><dc:creator><![CDATA[Gabriel]]></dc:creator><pubDate>Sat, 27 Jun 2020 14:45:12 GMT</pubDate></item><item><title><![CDATA[Reply to Help on Sat, 27 Jun 2020 12:33:09 GMT]]></title><description><![CDATA[<p dir="auto">post your script here<br />
to get help</p>
]]></description><link>https://forum.liquidbounce.net/post/364</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/364</guid><dc:creator><![CDATA[LolMC]]></dc:creator><pubDate>Sat, 27 Jun 2020 12:33:09 GMT</pubDate></item></channel></rss>