Quote:
Originally Posted by Dyson49
Why is this script not working?
Code:
-- Lua ½ºÅ©¸³Æ® ¾ÏÈ£È*
function get_module_name()
return "on_login"
end
function on_login( name )
if get_value("permission") > 0 then
notice(name.' is now connected.');
end
end
|
Ok i have a solution for this Problem (with an additional nice command) and another Question.
And i have find this link:
Solution:
[code]
notice("Hey, "..get_value("name").." is online.")
notice(get_value("name").." is online")
notice("<#8501FF>Hey, there are "..get_env("game.user_count").." Player online</#8501FF>")
You will get this:
But notice:
If you will log in with the player "Subject" You couldn't see the notice,
only the other player on the server see this notice.
Question:
How can I Edit the Text in the red Collum?