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
Results 1 to 7 of 7
Thread: How is this still not-patched
- 20 Jul. 2011 03:55am #1
How is this still not-patched
- 20 Jul. 2011 12:35pm #2
If they did, it would no doubt be UG material.
- 20 Jul. 2011 03:56pm #3
- 20 Jul. 2011 04:15pm #4
can someone explain how they did this?
- 20 Jul. 2011 10:32pm #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
- 21 Jul. 2011 12:08am #6
- 03 Aug. 2011 09:09pm #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.