C# Class SteamBot.AdminUserHandler

A user handler class that implements basic text-based commands entered in chat or trade chat.
Inheritance: UserHandler
Afficher le fichier Open project: natoshi/steamdogebot

Méthodes publiques

Méthode Description
AdminUserHandler ( Bot bot, SteamID sid ) : System
OnAcceptedFriend ( SteamID id ) : void
OnAddedFriend ( SteamID id ) : void
OnFriendAdd ( ) : bool

Called when a the user adds the bot as a friend.

OnFriendRemove ( ) : void
OnGroupAdd ( ) : bool

Triggered when a clan invites the bot.

OnLoginCompleted ( ) : bool

Called when the bot is fully logged in.

OnMessage ( string message, EChatEntryType type ) : void

Called whenever a message is sent to the bot. This is limited to regular and emote messages.

OnTradeAccept ( ) : void
OnTradeAddItem ( Schema schemaItem, Inventory inventoryItem ) : void
OnTradeError ( string error ) : void
OnTradeInit ( ) : void
OnTradeMessage ( string message ) : void
OnTradeReady ( bool ready ) : void
OnTradeRemoveItem ( Schema schemaItem, Inventory inventoryItem ) : void
OnTradeRequest ( ) : bool

Called whenever a user requests a trade.

OnTradeSuccess ( ) : void
OnTradeTimeout ( ) : void

Private Methods

Méthode Description
AddAllItems ( ) : void
AddCrateBySeries ( string series, uint amount ) : void
AddItemsByCraftType ( string typeToAdd, uint amount ) : void
GetAddAmount ( string data ) : uint
GetSubCommand ( string data, string &subCommand ) : bool
HandleAddCommand ( string command ) : void
HandleRemoveCommand ( string command ) : void
PrintHelpMessage ( ) : void
ProcessTradeMessage ( string message ) : void

Method Details

AdminUserHandler() public méthode

public AdminUserHandler ( Bot bot, SteamID sid ) : System
bot Bot
sid SteamKit2.SteamID
Résultat System

OnAcceptedFriend() public méthode

public OnAcceptedFriend ( SteamID id ) : void
id SteamKit2.SteamID
Résultat void

OnAddedFriend() public méthode

public OnAddedFriend ( SteamID id ) : void
id SteamKit2.SteamID
Résultat void

OnFriendAdd() public méthode

Called when a the user adds the bot as a friend.
public OnFriendAdd ( ) : bool
Résultat bool

OnFriendRemove() public méthode

public OnFriendRemove ( ) : void
Résultat void

OnGroupAdd() public méthode

Triggered when a clan invites the bot.
public OnGroupAdd ( ) : bool
Résultat bool

OnLoginCompleted() public méthode

Called when the bot is fully logged in.
public OnLoginCompleted ( ) : bool
Résultat bool

OnMessage() public méthode

Called whenever a message is sent to the bot. This is limited to regular and emote messages.
public OnMessage ( string message, EChatEntryType type ) : void
message string
type EChatEntryType
Résultat void

OnTradeAccept() public méthode

public OnTradeAccept ( ) : void
Résultat void

OnTradeAddItem() public méthode

public OnTradeAddItem ( Schema schemaItem, Inventory inventoryItem ) : void
schemaItem Schema
inventoryItem Inventory
Résultat void

OnTradeError() public méthode

public OnTradeError ( string error ) : void
error string
Résultat void

OnTradeInit() public méthode

public OnTradeInit ( ) : void
Résultat void

OnTradeMessage() public méthode

public OnTradeMessage ( string message ) : void
message string
Résultat void

OnTradeReady() public méthode

public OnTradeReady ( bool ready ) : void
ready bool
Résultat void

OnTradeRemoveItem() public méthode

public OnTradeRemoveItem ( Schema schemaItem, Inventory inventoryItem ) : void
schemaItem Schema
inventoryItem Inventory
Résultat void

OnTradeRequest() public méthode

Called whenever a user requests a trade.
public OnTradeRequest ( ) : bool
Résultat bool

OnTradeSuccess() public méthode

public OnTradeSuccess ( ) : void
Résultat void

OnTradeTimeout() public méthode

public OnTradeTimeout ( ) : void
Résultat void