Need help with this

Posts 112 of 12 · Page 1 of 1
Need help with this
Is there any scripts/c++/dll hacks out there that will allow me to if i press a key stop sending packets then if i press a key again send packets so i like freeze in mid air?
Quote Originally Posted by thisisaaccount1234 View Post
Is there any scripts/c++/dll hacks out there that will allow me to if i press a key stop sending packets then if i press a key again send packets so i like freeze in mid air?
copy paste it just like the rest do
Quote Originally Posted by thisisaaccount1234 View Post
no like fr is there any hacks like that -_-
Put in a create move/think hook if input.IsKeyDown(KEY_F) then
bsendpacket=false;
else
bsendpacket=true;
end
Quote Originally Posted by snipwnage2 View Post
Put in a create move/think hook if input.IsKeyDown(KEY_F) then
bsendpacket=false;
else
bsendpacket=true;
end
bsendpacket = input.IsKeyDown(KEY_F) and false or true
Quote Originally Posted by kingboy111 View Post
bsendpacket = input.IsKeyDown(KEY_F) and false or true
ummm.. "not"?
Quote Originally Posted by snipwnage2 View Post
Put in a create move/think hook if input.IsKeyDown(KEY_F) then
bsendpacket=false;
else
bsendpacket=true;
end
hahahahah you mean GetAsyncKeyState(0x47) skittownage
Quote Originally Posted by MasterKitty View Post
hahahahah you mean GetAsyncKeyState(0x47) skittownage
you know thats lua no c++ ?
Quote Originally Posted by zombiiju View Post
you know thats lua no c++ ?
yeah but whoever still uses lua is a big shitter
with toggeling [
Code:
require( "bsendpacket" ); 
local air_stuck = false;
local click = false
	hook.Add("CreateMove", "", function( cmd ) 
	if ( input.IsKeyDown( KEY_V ) ) and !click then 
		air_stuck = !air_stuck;
		print("Airstuck Active: " ..tostring( air_stuck ) )
		click = true;
	end 
	if !input.IsKeyDown( KEY_V ) then 
		click =false;
	end 
	bSendPacket = air_stuck;
end )
I hope you know where to get the module ..
Bsendpacket airstuck is terrible anyways
Quote Originally Posted by snipwnage2 View Post
Bsendpacket airstuck is terrible anyways
but you kids have nothing else :^(
Posts 112 of 12 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?