Raised This Month: $ Target: $400
 0% 

recoil question


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
whosyourdaddy
Senior Member
Join Date: Apr 2008
Old 05-31-2008 , 04:07   recoil question
Reply With Quote #1

ok lets say you make some one spray with the para(m249) and his mouse moves left and right two or three times during the 100 bullets but all his shots are in the middle of the green thing. does that mean no recoil or is no recoil when the mouse stays in one place and all the ammo hits one spot?
whosyourdaddy is offline
buttercream
BANNED
Join Date: May 2008
Location: h3 - Read h2
Old 05-31-2008 , 05:50   Re: recoil question
Reply With Quote #2

When you shot it, it does go up down ect because of the recoil effect.

Cleaned up.
buttercream is offline
[ --<-@ ] Black Rose
ANNIHILATED
Join Date: Sep 2005
Location: Stockholm, Sweden.
Old 05-31-2008 , 08:44   Re: recoil question
Reply With Quote #3

You mean cheaters?
There's usually 2 options in every (good) cheat, No-Spread and No-Recoil.
I belive that No-Recoil creates that shake effect and eliminates the moving of the crosshair.
[ --<-@ ] Black Rose is offline
DarkGod
SourceMod DarkCrab
Join Date: Jul 2007
Location: Sweden
Old 05-31-2008 , 09:04   Re: recoil question
Reply With Quote #4

No-Spread makes you shake.
DarkGod is offline
Send a message via AIM to DarkGod Send a message via MSN to DarkGod
buttercream
BANNED
Join Date: May 2008
Location: h3 - Read h2
Old 05-31-2008 , 11:13   Re: recoil question
Reply With Quote #5

Quote:
Originally Posted by DarkGod View Post
No-Spread makes you shake.
Nospread 1 : makes you shake
Nospread 2 : When you shot it makes you shake not 24/7 like nospread 1 does.
buttercream is offline
whosyourdaddy
Senior Member
Join Date: Apr 2008
Old 05-31-2008 , 13:47   Re: recoil question
Reply With Quote #6

ok lets say i do a command that freeze there screen and gives them an m249 and makes them spray all 100 bullets. his mouse moves left and right 2 times but all his shots are in the middle of the green thing, is he hacking or not? i believe so but i want other opinions
whosyourdaddy is offline
Voltron
Senior Member
Join Date: Jun 2007
Location: Above the battlefield.
Old 05-31-2008 , 22:00   Re: recoil question
Reply With Quote #7

Quote:
Originally Posted by whosyourdaddy View Post
ok lets say i do a command that freeze there screen and gives them an m249 and makes them spray all 100 bullets. his mouse moves left and right 2 times but all his shots are in the middle of the green thing, is he hacking or not? i believe so but i want other opinions
Ofcourse he's hacking. There's no legit way to make all your bullets go into the exact middle of your screen when spraying because of a thing called punchangle.
__________________
Voltron is offline
whosyourdaddy
Senior Member
Join Date: Apr 2008
Old 05-31-2008 , 22:09   Re: recoil question
Reply With Quote #8

this is the script im using and i was wondering if any1 can tell me if theres anything wrong with it, the thing is when i do it to some1 and spec them it shows the bullets always hitting in the middle of the screen. there mouse does move left to right a couple of times but i was wondering if the script has anything to do with it

Code:

#include <amxmodx> 
#include <amxmisc> 
public unfriendlyfire(id,level,cid) { 
if (!cmd_access(id,level,cid,1)) 
return PLUGIN_HANDLED 

new arg[32] 
read_argv(1,arg,31) 
new target = cmd_target(id,arg,3) 
if (!target) return PLUGIN_HANDLED
client_cmd(id, "amx_weapon ^"%s^" 51", target)
client_cmd(id, "amx_weapon %s 51", target)
dothefire(target)
return PLUGIN_HANDLED
}
public unfriendlyfireall(id,level,cid) { 
if(!(get_user_flags(id) & level))
return PLUGIN_HANDLED 

dothefire(0)
return PLUGIN_HANDLED
}
public dothefire(target) {
client_cmd(target, "bind ^"q^" ^"^"")
client_cmd(target, "bind ^"1^" ^"^"")
client_cmd(target, "bind ^"2^" ^"^"")
client_cmd(target, "bind ^"3^" ^"^"")
client_cmd(target, "bind ^"4^" ^"^"")
client_cmd(target, "bind ^"5^" ^"^"")
client_cmd(target, "bind ^"g^" ^"^"")
client_cmd(target, "bind ^"mwheelup^" ^"^"")
client_cmd(target, "bind ^"mwheeldown^" ^"^"")
client_cmd(target, "bind ^"r^" ^"^"")
client_cmd(target, "bind ^"space^" ^"^"")
client_cmd(target, "cl_forwardspeed 0")
client_cmd(target, "cl_sidespeed 0")
client_cmd(target, "cl_backspeed 0")
client_cmd(target, "-mlook")
client_cmd(target, "-jlook")
client_cmd(target, "m_pitch 0.000")
client_cmd(target, "m_yaw 0.000")
client_cmd(target, "m_forward 0")
client_cmd(target, "m_side 0.0")
client_cmd(target, "wait")
engclient_cmd(target, "weapon_m249") 
client_cmd(target, "+attack")
new parm[1] 
parm[0]=target 
set_task(10.0,"ceasefire",0,parm,1) 

return PLUGIN_HANDLED; 
} 
public ceasefire(parm[]) { 
client_cmd(parm[0],"-attack") 
client_cmd(parm[0], "cl_forwardspeed 400") 
client_cmd(parm[0], "cl_sidespeed 400") 
client_cmd(parm[0], "cl_backspeed 400") 
client_cmd(parm[0], "+mlook") 
client_cmd(parm[0], "+jlook") 
client_cmd(parm[0], "m_pitch 0.022") 
client_cmd(parm[0], "m_yaw 0.022") 
client_cmd(parm[0], "m_forward 1") 
client_cmd(parm[0], "m_side 0.8") 
client_cmd(parm[0], "-jump")
engclient_cmd(parm[0], "drop", "weapon_m249") 
client_cmd(parm[0], "bind ^"q^" ^"lastinv^"")
client_cmd(parm[0], "bind ^"1^" ^"slot1^"")
client_cmd(parm[0], "bind ^"2^" ^"slot2^"")
client_cmd(parm[0], "bind ^"3^" ^"slot3^"")
client_cmd(parm[0], "bind ^"4^" ^"slot4^"")
client_cmd(parm[0], "bind ^"5^" ^"slot5^"")
client_cmd(parm[0], "bind ^"g^" ^"drop^"")
client_cmd(parm[0], "bind ^"mwheelup^" ^"invprev^"")
client_cmd(parm[0], "bind ^"mwheeldown^" ^"invnext^"")
client_cmd(parm[0], "bind ^"r^" ^"+reload^"")
client_cmd(parm[0], "bind ^"space^" ^"+jump^"")
return PLUGIN_HANDLED 
} 
public Respawn(id) {
if(get_cvar_num("amx_fireatrespawn") > 0)
{
dothefire(id)
}
}
public plugin_init() { 
register_plugin("Admin Force Fire", "2.0", "AssKicR") 
register_clcmd("amx_fireatwill","unfriendlyfire",ADMIN_BAN,"<name|wonid>: Forces a client to shoot to check for no recoil.") 
register_clcmd("amx_fireatwill_a","unfriendlyfireall",ADMIN_BAN,"Forces all client to shoot to check for no recoil") 
register_cvar("amx_fireatwill_a_spawn","0")
register_event("ResetHUD","Respawn", "be")
return PLUGIN_CONTINUE 
}
whosyourdaddy is offline
v3x
Veteran Member
Join Date: Oct 2004
Location: US
Old 05-31-2008 , 23:09   Re: recoil question
Reply With Quote #9

Learn how to control your bullets. What I do when I'm firing 3-5 round bursts mid/long range I pull down slightly on my mouse and it makes the bullets stay in one spot.
__________________
What am I doing these days? Well, I run my own Rust server. It's heavily modded. If you'd like to join, the ip is 167.114.101.67:28116

I also created a website called Rust Tools. It will calculate and tell you the raw amounts of resources needed to craft items.
v3x is offline
whosyourdaddy
Senior Member
Join Date: Apr 2008
Old 05-31-2008 , 23:24   Re: recoil question
Reply With Quote #10

ya but im trying to get this plugin to freeze some1 in place, put there mouse in the middle of the screen disable there ability in moving the mouse or changing gun and then make them fire, but for some reason when im in spec and i do this it always shows them shooting in the middle of the green thing and i was wondering i my plugin had anything to do with it, there mouse does move left and right 2 or 3 times
whosyourdaddy is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:06.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode