I need a script to announce vip enter and leave in lua.
Just like Openter!
Can someone help?
Bot = "Bot_Name"
function NewUserConnected(user)
if (user.iProfile == 2) then
SendToAll(Bot, "Welcome "..user.sName)
end
function UserDisconnected(user)
if user.iProfile == 2) then
SendToAll(Bot, "C ya later "..user.sName)
end
Such a simple thing:))
it doesn't work on ptoka 330:((
code:--------------------------------------------------------------------------------
Bot = "Bot_Name"
function NewUserConnected(user)
if (user.iProfile == 2) then
SendToAll(Bot, "Welcome "..user.sName..)
end
function UserDisconnected(user)
if user.iProfile == 2) then
SendToAll(Bot, "C ya later "..user.sName..)
end
--------------------------------------------------------------------------------
Fixed:
Bot = "Bot_Name"
function NewUserConnected(user)
if user.iProfile == 2 then
SendToAll(Bot, "Welcome "..user.sName)
end
end
function UserDisconnected(user)
if user.iProfile == 2 then
SendToAll(Bot, "C ya later "..user.sName)
end
end