Tekken Posted November 15, 2014 Posted November 15, 2014 Whi is this script not working ? local chatMessages = { { "Pentru a interactiona cu playeri apasati M apio Click dreapta pe Player" }, { "Pentru a viziona statisticile contului dumneavoasta apasati F10" }, { "Pentru o lista a Staff-ului Online scrieti /admins" }, { "Apasati F6 pentru PrivateChat" }, { "Pentru a deveni membru VIP vizitati forumul nostru [url=http://romaniadz.forumz.ro/]http://romaniadz.forumz.ro/[/url]" }, { "Puteti face misiuni la punct-ul galben de pe mapa" } } function initRes() setTimer (printChatMessage, 60 * 1000, 0) end addEventHandler("onResourceStart", root(), initRes) function printChatMessage() local theMessage = chatMessages[math.random(0, #chatMessages)] outputChatBox(theMessage, root, 255, 255, 255, true) end Resources I made: attachToBones - A newer bone_attach. Simple Level system - Just a simple level system. Do not PM me for help with leaked scripts! I WILL NOT HELP YOU!
manve1 Posted November 15, 2014 Posted November 15, 2014 local chatMessages = { { "Pentru a interactiona cu playeri apasati M apio Click dreapta pe Player" }, { "Pentru a viziona statisticile contului dumneavoasta apasati F10" }, { "Pentru o lista a Staff-ului Online scrieti /admins" }, { "Apasati F6 pentru PrivateChat" }, { "Pentru a deveni membru VIP vizitati forumul nostru [url=http://romaniadz.forumz.ro/]http://romaniadz.forumz.ro/[/url]" }, { "Puteti face misiuni la punct-ul galben de pe mapa" } } setTimer( function () outputChatBox(unpack(chatMessages[math.random(#chatMessages)]), root, 255, 255, 255) end, 60000, 0) Looking for tutorials or information? check out: www.simpleask.co.uk
Tekken Posted November 16, 2014 Author Posted November 16, 2014 Thanks ! Resources I made: attachToBones - A newer bone_attach. Simple Level system - Just a simple level system. Do not PM me for help with leaked scripts! I WILL NOT HELP YOU!
manve1 Posted November 16, 2014 Posted November 16, 2014 Glad to help. Looking for tutorials or information? check out: www.simpleask.co.uk
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