Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void MonitorLvzEvent(object sender, LVZToggleEvent e)
- {
- Game(msg.arena("LvzToggleEvent fired - PlayerID [ "+e.TargetPlayerId+" ] " + e.TargetPlayerName));
- if (e.LVZObjects == null)
- {
- Game(msg.arena("LvzToggleEvent list is null."));
- }
- else
- foreach (var item in e.LVZObjects)
- {
- Game(msg.arena("LvzID[ " + item.Key.ToString().PadLeft(4, '0') + " ]".PadRight(15) + "State[ " + (item.Value ? " On" : "Off") + " ]"));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment