OnPlayerModInfo

From Multi Theft Auto: Wiki
Revision as of 02:39, 29 July 2011 by Mate (talk | contribs) (→‎Example)
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 onPlayerModInfo ( category, ids, names )
	if category == 'gta3.img' then
		for k,v in pairs(names) do
			if not string.find( v, "radar" ) then
				 outputChatBox( getPlayerName(source) .. ", why have you modified " .. v .. "?" )
			end	
		end
	end
end	
addEventHandler ( "onPlayerModInfo", getRootElement(),onPlayerModInfo )

See Also

Player events


Event functions