Jump to content

/ss ??


Recommended Posts

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
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 :D

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

i made it in 3 lines :D

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

i made it in 3 lines :D

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

i made it in 3 lines :D

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

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...