Mohameddz Posted July 11, 2017 Share Posted July 11, 2017 Guys please help me, I got this script but it's doesn't work, Please help !! server.lua function vipReplaceModele (_, acc) local accName = getAccountName (acc ) if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then triggerClientEvent (source, "onReplace", root ) end end addEventHandler('onPlayerLogin', root, vipReplaceModele) And this client.lua function replaceModele () local txd = engineLoadTXD("hydra.txd") engineImportTXD(txd, 520) local dff = engineLoadDFF("hydra.dff", 520) engineReplaceModel(dff, 520) end addEvent( "onReplace", true ) addEventHandler( "onReplace", root, replaceModele ) -It's a hydra only for VIP can spawn this vehicles, but when i remove VIP at myself,The hydra was spawn. -Please help !!! Link to comment
Sticmy Posted July 11, 2017 Share Posted July 11, 2017 function vipReplaceModele () local account = getPlayerAccount(source) if isObjectInACLGroup ("user."..getAccountName( account ), aclGetGroup ( "VIP" ) ) then triggerClientEvent (source, "onReplace", source ) end end addEventHandler('onPlayerLogin', root, vipReplaceModele) function replaceModele () local txd = engineLoadTXD("hydra.txd") engineImportTXD(txd, 520) local dff = engineLoadDFF("hydra.dff", 520) engineReplaceModel(dff, 520) end addEvent( "onReplace", true ) addEventHandler( "onReplace", root, replaceModele ) Try it i did some changes i tried it in my local and it works Link to comment
Mohameddz Posted July 16, 2017 Author Share Posted July 16, 2017 It doesn't work,The player non-vip can spawn hydra. Help!! i want VIP can spawn hydra and non-VIP cannot spawn it with saying in chat for non-vip ( Only for VIP can use this vehicle) But wait,It's need to add hydra.dff or 520.dff??? (On Meta.xml) 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