SetBanAdmin: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 4: | Line 4: | ||
This function sets a new admin for a [[ban]]. | This function sets a new admin for a [[ban]]. | ||
}} | }} | ||
==Syntax== | ==Syntax== |
Revision as of 20:59, 15 September 2015
This function sets a new admin for a ban.
Syntax
bool setBanAdmin ( ban theBan, string theAdmin )
Required Arguments
- theBan: The ban you want to change the admin of.
- theAdmin: The new admin.
Returns
Returns true if changed, false otherwise.
Example
This example changes the ban admin to the admin's IP (If it's a player), when someone gets banned.
function banHappened(theBan) if getElementType(source) == "player" then local adminIP = getPlayerIP(source) setBanAdmin(theBan,adminIP) end end addEventHandler( "onBan", getRootElement(), banHappened )