Multiuser Lingo Dictionary > Multiuser Lingo Dictionary > removeUser()

 

removeUser()

Syntax

whichGroup.removeUser(whichUser)

Description

Multiuser Server server-side command; removes the given user from the specified group.

Example

This handler removes the user who has just logged on to the server from the group @AllUsers:

on userLogOn  (me, movie, group, user)
	voGroup = movie.serverGroup("@AllUsers")
	voGroup.removeUser(user)
end

See also

addUser()