#Paper Posted October 17, 2010 Share Posted October 17, 2010 What's wrong in this script? local localPlayerName = getPlayerName(getLocalPlayer()) function afk () outputChatBox ( "" ..localPlayerName.. "#9933ffin now Away From Keyboard!", true ) end addCommandHandler("afk", afk) Link to comment
dzek (varez) Posted October 17, 2010 Share Posted October 17, 2010 everything. you are messing up client side with server side! get back to tutorial. put this as server side: function afk (playerSource) outputChatBox (getPlayerName(playerSource).. " #9933ffis now Away From Keyboard!", getRootElement(), 255, 255, 255, true) end addCommandHandler("afk", afk) Link to comment
#Paper Posted October 17, 2010 Author Share Posted October 17, 2010 i should set this sript in server-side? Link to comment
dzek (varez) Posted October 17, 2010 Share Posted October 17, 2010 quoting myself.. put this as server side 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