OnPlayerModInfo: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
function ( filename, itemList ) | function ( filename, itemList ) | ||
-- Print player name and file name | -- Print player name and file name | ||
outputChatBox | outputChatBox( getPlayerName(source) .. " " .. filename ) | ||
-- Print details on each modification | -- Print details on each modification | ||
Line 26: | Line 26: | ||
local line = tostring(idx) .. ")" | local line = tostring(idx) .. ")" | ||
for k,v in pairs(item) do | for k,v in pairs(item) do | ||
line = line .. " " .. tostring(k) .. "=" | line = line .. " " .. tostring(k) .. "=" .. tostring(v) | ||
end | end | ||
outputChatBox( line ) | outputChatBox( line ) |
Revision as of 14:30, 29 July 2011
This event is triggered when a player has modified certain files
Parameters
string filename, table itemlist
- filename: An string with the filename of the modified file
- itemlist: A table with the details of each modification within the file
Source
The source of this event is the player
Example
This example prints all information into the chatbox
addEventHandler ( "onPlayerModInfo", root, function ( filename, itemList ) -- Print player name and file name outputChatBox( getPlayerName(source) .. " " .. filename ) -- Print details on each modification for idx,item in ipairs(itemList) do local line = tostring(idx) .. ")" for k,v in pairs(item) do line = line .. " " .. tostring(k) .. "=" .. tostring(v) end outputChatBox( line ) end end ) addEventHandler ( "onPlayerModInfo", getRootElement(),onPlayerModInfo )
See Also
Player events
- onPlayerACInfo
- onPlayerBan
- onPlayerChangeNick
- onPlayerChat
- onPlayerClick
- onPlayerCommand
- onPlayerConnect
- onPlayerContact
- onPlayerDamage
- onPlayerJoin
- onPlayerLogin
- onPlayerLogout
- onPlayerMarkerHit
- onPlayerMarkerLeave
- onPlayerModInfo
- onPlayerMute
- onPlayerNetworkStatus
- onPlayerPickupHit
- onPlayerPickupLeave
- onPlayerPickupUse
- onPlayerPrivateMessage
- onPlayerQuit
- onPlayerScreenShot
- onPlayerSpawn
- onPlayerStealthKill
- onPlayerTarget
- onPlayerUnmute
- onPlayerVehicleEnter
- onPlayerVehicleExit
- onPlayerVoiceStart
- onPlayerVoiceStop
- onPlayerWasted
- onPlayerWeaponFire
- onPlayerWeaponSwitch
Event functions
- addEvent
- addEventHandler
- cancelEvent
- cancelLatentEvent
- getEventHandlers
- getLatentEventHandles
- getLatentEventStatus
- removeEventHandler
- triggerEvent
- wasEventCancelled