A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

How is this still not-patched

1.3k views · started by cclown23 ·
#1
How is this still not-patched
Earlier some in rally booted me to an force race just like the old days but how if it got patched, does anyone know how to boot/force race someone in rally the new unpatched way ;/ it is possible
#2
If they did, it would no doubt be UG material.
#3
Making boot scripts and everything else is so easy.
#4
can someone explain how they did this?
#5
Func _killName()
If StringInStr($hRecv, "6") And StringInStr($hRecv, "80") Then
$ThereSSID3 = __StringBetween($hRecv, '6', "")
$xynP = __StringBetween($hRecv, '6' & $ThereSSID3 & "", "")
If StringInStr($hRecv, '6') And StringInStr($hRecv, $killName) Then
$ThereSSID3 = __StringBetween($hRecv, '6', "")
$xynP = __StringBetween($hRecv, '6' & $ThereSSID3 & "", "")
$killssid = $ThereSSID3
ElseIf $ThereSSID3 <> "" And $GameID <> $ThereSSID3 And $killssid == $ThereSSID3 Then
_PacketSend("53823" & $sGameID & "0" & $killssid & "0" & "../../../../../../Gaia_Flash/WORDBUMP/wordbump1.3" & "")
EndIf

EndIf

EndFunc ;==>_killName
#6
Mang wrote:
Func _killName()
If StringInStr($hRecv, "6") And StringInStr($hRecv, "80") Then
$ThereSSID3 = __StringBetween($hRecv, '6', "")
$xynP = __StringBetween($hRecv, '6' & $ThereSSID3 & "", "")
If StringInStr($hRecv, '6') And StringInStr($hRecv, $killName) Then
$ThereSSID3 = __StringBetween($hRecv, '6', "")
$xynP = __StringBetween($hRecv, '6' & $ThereSSID3 & "", "")
$killssid = $ThereSSID3
ElseIf $ThereSSID3 <> "" And $GameID <> $ThereSSID3 And $killssid == $ThereSSID3 Then
_PacketSend("53823" & $sGameID & "0" & $killssid & "0" & "../../../../../../Gaia_Flash/WORDBUMP/wordbump1.3" & "")
EndIf

EndIf

EndFunc ;==>_killName


Does this work?

Im putting this on a new client that will be used solely for this function

right now i got the gui done just need to restart some stuff
#7
I sure hope you don't plan to just throw this in a client and hope that it works. Doesn't work that way. If you plan on making a trainer (a Flash client), you'll have to grab the value of game variables via the Flash ActiveX GetVariable method, e.g. GameID, which is the equivalent of a roomID I'm assuming. And define variables like $killssid, $ThereSSID3, etc, manually.

What he gave you has no value, but it's pretty much giving you the gist of how this is being done.

Good luck.