Jump to content

Handing the colt45 with two hands


TheCapn

Recommended Posts

Posted

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,

Posted

I don't think it's possible..

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

Posted

@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 
) 

Datastore - Store data to a database quickly. (Useful for saving scripted tables)

Posted

Yeah, He still can change the properties of deagle to make it look like colt.

If you're looking for a cheap paid scripter, don't hesitate to contact me.

Great minds discuss ideas, Average minds discuss events and small minds discuss people.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...