OnPlayerModInfo

From Multi Theft Auto: Wiki
Revision as of 20:43, 28 July 2011 by Ccw (talk | contribs) (Created page with "__NOTOC__ {{Server event}} This event is triggered when a player has modified certain files ==Parameters== <syntaxhighlight lang="lua"> int category, table ids, table names </syntaxhighlight> *'''cate...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This event is triggered when a player has modified certain files

Parameters

int category, table ids, table names
  • category: An integer indicating what category of file has been modified. Currently there is only one category:
  • 1: gta3.img
  • ids: A table with the id's of the parts of the file that have been modified
  • names: A table with the names of the parts of the file that have been modified

Source

The source of this event is the player

Example

This example asks awkward questions unless the player has only changed the radar graphic

function handleModder ( category, ids, names )
    if category == 1 then
        for _,name in ipairs(names) do
            if not string.find( name, "radar" ) then
                outputChatBox( getPlayerName(source) .. ", why have you modified " .. name .. "?" )
	    end
        end
    end
end
addEventHandler ( "onPlayerModInfo", root, handleModder )

See Also

Player events


Event functions