abu5lf Posted March 21, 2012 Posted March 21, 2012 (edited) addEventHandler("onPlayerLogin", root, function (Player) if isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( Player ) ), aclGetGroup ( "Admin" ) ) then outputChatBox("Admin"..getPlayerName(source).." has logged in!", root) end end ) Edited December 25, 2012 by Guest ╔═╦╦╦╗╔╦═╦═╦═╦═╦╦╦╦╦╦╦═╦╦╦╦╗ ║║║║║╠╝║║╚╣║║║║║║║║║║║║║║║║║ ║║║║║╚╦╦═╦╦╦╦╣║║║║║║║║║║║║║║ ║║║║╠═╣╠╝╔══╝║║║║║╟╢║║║║║╟╢║ ╚╩══╩══╩═╩═══╩╩══╩╩═╩╩╩═╩╩═╝ «سبحانك اللهم وبحمدك أشهد أن لا إله إلا أنت أستغفرك وأتوب إليك» M7mdAl7arthy : لتواصل سكايب
DNL291 Posted March 21, 2012 Posted March 21, 2012 addEventHandler("onPlayerLogin", root, function () if isObjectInACLGroup ("user."..getAccountName ( getPlayerAccount ( source ) ), aclGetGroup ( "Admin" ) ) then outputChatBox("Admin"..getPlayerName(source).." has logged in!", root) end end ) Please do not PM me with scripting related question nor support, use the forums instead.
TwiX! Posted March 21, 2012 Posted March 21, 2012 (edited) addEventHandler("onPlayerLogin", root, function () local accName = getAccountName ( getPlayerAccount ( source ) ) if isObjectInACLGroup ( "user." .. tostring( accName ), aclGetGroup( "Admin" ) ) then outputChatBox("Admin"..getPlayerName(source).." has logged in!", root,255,255,255) else outputChatBox("Player"..getPlayerName(source).." has logged in!", root,255,255,255) end end ) Server-Side only Edited March 21, 2012 by Guest - Working on [php/HTML/Mysql/Lua/Java Scripts/Web Design/3D Modeling]
DNL291 Posted March 21, 2012 Posted March 21, 2012 addEventHandler("onPlayerLogin", root, function () local accName = getAccountName ( getPlayerAccount ( source ) ) if isObjectInACLGroup ( "user." .. tostring( accName ), aclGetGroup( "Admin" ) ) then outputChatBox("Admin"..getPlayerName(source).." has logged in!", root,255,255,255) else outputChatBox("Player"..getPlayerName(source).." has logged in!", root,255,255,255) end end Server-Side only ) After the end. Please do not PM me with scripting related question nor support, use the forums instead.
TwiX! Posted March 21, 2012 Posted March 21, 2012 forgot - Working on [php/HTML/Mysql/Lua/Java Scripts/Web Design/3D Modeling]
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