18 lines
514 B
Plaintext
18 lines
514 B
Plaintext
#include "eye_dm_inc"
|
|
|
|
void main()
|
|
{
|
|
object oDM = GetPCSpeaker();
|
|
int iChoice = GetLocalInt(oDM, "SubscriberWand");
|
|
if (iChoice == 1) // add subscription
|
|
{
|
|
DM_SubscribeToMessage(oDM, SUBSCRIPTION_02);
|
|
SetCustomToken(14000, "You succesfully subscribed to '" + SUBSCRIPTION_02 + "'");
|
|
}
|
|
else if (iChoice == 2) // remove subscription
|
|
{
|
|
DM_UnSubscribeToMessage(oDM, SUBSCRIPTION_02);
|
|
SetCustomToken(14000, "You succesfully unsubscribed '" + SUBSCRIPTION_02 + "'");
|
|
}
|
|
}
|