TheCapn Posted May 14, 2014 Share Posted May 14, 2014 Hello guys, I was wondering if it was possible to make all the players handling the colt45 with the two hands while they shoot ? Regards, Link to comment
xXMADEXx Posted May 14, 2014 Share Posted May 14, 2014 Use the function setPedStat and event onPlayerJoin/onPlayerLogin Link to comment
-.Paradox.- Posted May 14, 2014 Share Posted May 14, 2014 I don't think it's possible.. Link to comment
xXMADEXx Posted May 14, 2014 Share Posted May 14, 2014 I don't think it's possible.. It is, as you can see with this function... Use the function setPedStat and event onPlayerJoin/onPlayerLogin Link to comment
Moderators Citizen Posted May 14, 2014 Moderators Share Posted May 14, 2014 I don't think it's possible.. It is, as you can see with this function... Use the function setPedStat and event onPlayerJoin/onPlayerLogin What's the stat name then ? Link to comment
Moderators Citizen Posted May 14, 2014 Moderators Share Posted May 14, 2014 Thanks, always good to know that even if I'll probably never use it Link to comment
justn Posted May 14, 2014 Share Posted May 14, 2014 @Citizen You're welcome. @TheCapn Use this code below addEventHandler("onPlayerLogout",root, function(player) local acc = getPlayerAccount(player) if acc and not isGuestAccount ( acc ) then local DoubleColt = getPedStat(player,69) setAccountData(acc, "double.colt", DoubleColt ) end end ) addEventHandler("onPlayerLogin",root, function(player) local acc = getPlayerAccount(player) local DoubleColt = getAccountData(acc,"double.colt") setPedStat ( player, DoubleColt, 1000 ) end ) addEventHandler("onPlayerJoin",root, function(player) setPedStat ( player, 69, 1000 ) end ) Link to comment
TheCapn Posted May 14, 2014 Author Share Posted May 14, 2014 I don't want the double colt, I just want to hold ONE colt with two hands. Sorry if I wasn't clear enough. Link to comment
xXMADEXx Posted May 14, 2014 Share Posted May 14, 2014 Oh, that probably wouldn't be possible, I think you would need a custom animation which MTA doesn't support yet. Link to comment
Mr_Moose Posted May 15, 2014 Share Posted May 15, 2014 I think Deagle is held with two hands, another gun thought but still similar to colt if that's any help. Link to comment
-.Paradox.- Posted May 15, 2014 Share Posted May 15, 2014 Yeah, He still can change the properties of deagle to make it look like colt. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now