Callbacks (Channels) - maddinat0r/samp-discord-connector GitHub Wiki
DCC_OnChannelCreate
- Triggered: When a guild channel created.
- Usage:
DCC_OnChannelCreate(DCC_Channel:channel)
where channel is the internal id for the channel which is created.
DCC_OnChannelUpdate
- Triggered: When a guild channel updated (for ex:- channel name,permission etc).
- Usage:
DCC_OnChannelUpdate(DCC_Channel:channel)
where channel is the internal id for the channel which is updated.
DCC_OnChannelDelete
- Triggered: When a guild channel delete.
- Usage:
DCC_OnChannelDelete(DCC_Channel:channel)
where channel is the internal id for the channel which is delete.