Blackvein Posted July 17, 2010 Share Posted July 17, 2010 Can someone make a quick and simple script to change a players skin, with the following syntax? /ss [skinid] Link to comment
50p Posted July 17, 2010 Share Posted July 17, 2010 You should find it in Freeroam. Why don't you search before you post? Even though it's 3 lines script, you should do little research before you ask. Besides, this is forum to help you with script not to request scripts. Link to comment
Headshot4Fun Posted July 17, 2010 Share Posted July 17, 2010 Well. 50p, he's not asking for script help... But you are right, just use setElementModel 4 line script (function, setElementModel, end, addCommandHandler) Link to comment
Dark Dragon Posted July 18, 2010 Share Posted July 18, 2010 you can put all it in one line too. however i think play or freeroam has such a command by default. Link to comment
Castillo Posted July 18, 2010 Share Posted July 18, 2010 you can put all it in one line too. however i think play or freeroam has such a command by default. i made it in 3 lines function setSkin(thePlayer,cmd,skin) skin = skin and tonumber(skin) if skin then setElementModel(thePlayer,skin) fadeCamera(thePlayer,true) end end addCommandHandler("ss", setSkin) Link to comment
dzek (varez) Posted July 18, 2010 Share Posted July 18, 2010 i made it in 3 lines function setSkin(thePlayer,cmd,skin) skin = skin and tonumber(skin) -- skin will be "true" now if skin then -- skin=true, we are passing this setElementModel(thePlayer,skin) -- bad argument fadeCamera(thePlayer,true) end end addCommandHandler("ss", setSkin) Link to comment
50p Posted July 18, 2010 Share Posted July 18, 2010 i made it in 3 lines function setSkin(thePlayer,cmd,skin) skin = skin and tonumber(skin) -- skin will be "true" now if skin then -- skin=true, we are passing this setElementModel(thePlayer,skin) -- bad argument fadeCamera(thePlayer,true) end end addCommandHandler("ss", setSkin) skin will not be true. Link to comment
Castillo Posted July 20, 2010 Share Posted July 20, 2010 i made it in 3 lines function setSkin(thePlayer,cmd,skin) skin = skin and tonumber(skin) -- skin will be "true" now if skin then -- skin=true, we are passing this setElementModel(thePlayer,skin) -- bad argument fadeCamera(thePlayer,true) end end addCommandHandler("ss", setSkin) dunno what u mean, the code works cause ive tested it. 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