DeletedAccount1111 Posted February 9, 2014 Share Posted February 9, 2014 Is there any script that does this? Mostly because I cant remove hats and tattoos. Link to comment
McDeKi Posted February 9, 2014 Share Posted February 9, 2014 Hey, I had this problem too local TablicaDebugowa = { {"tracktrpro","tracktr", 2}, {"convproblk","conv", 3}, {"bandred3","bandmask", 15}, {"tshirterisyell","tshirt",0 }, {"gimpleg","gimpleg",17}, {"bandred","bandana",16}, {"watchpink","watch",14}, {"dogtag","neck",13} } --you can add more clothes (like tattos etc) to TablicaDebugowa for i=1,#TablicaDebugowa do --simple loop addPedClothes(source,TablicaDebugowa[i][1],TablicaDebugowa[i][2],TablicaDebugowa[i][3]) removePedClothes(source,TablicaDebugowa[i][3]) end Link to comment
DeletedAccount1111 Posted February 9, 2014 Author Share Posted February 9, 2014 I'm not quite sure what does that script do Link to comment
McDeKi Posted February 9, 2014 Share Posted February 9, 2014 There is mta bug which set tattos and other things to cj and you cant remove it with removePedClothes, you must add clothes and then remove it Link to comment
DeletedAccount1111 Posted February 9, 2014 Author Share Posted February 9, 2014 But this restarts it every time or I must execute some weird command to do it? Link to comment
McDeKi Posted February 9, 2014 Share Posted February 9, 2014 This bug only appears when you join the game function fixClothes() local TablicaDebugowa = { {"tracktrpro","tracktr", 2}, {"convproblk","conv", 3}, {"bandred3","bandmask", 15}, {"tshirterisyell","tshirt",0 }, {"gimpleg","gimpleg",17}, {"bandred","bandana",16}, {"watchpink","watch",14}, {"dogtag","neck",13} } --you can add more clothes (like tattos etc) to TablicaDebugowa for i=1,#TablicaDebugowa do --simple loop addPedClothes(source,TablicaDebugowa[i][1],TablicaDebugowa[i][2],TablicaDebugowa[i][3]) removePedClothes(source,TablicaDebugowa[i][3]) end end addEventHandler("onPlayerLogin", getRootElement ( ), fixClothes) Link to comment
DeletedAccount1111 Posted February 9, 2014 Author Share Posted February 9, 2014 I still dont get, so what I asked was something like it sets tattoos, hats, collars, etc to nothing, hair to default, torsto to black vest, legs to denim jeans, and shoes to those black ones 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