• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Cast Chat does not open

MovieBR

Member
Joined
Dec 19, 2016
Messages
16
Reaction score
15
TFS 0.4

So .. the chat for the cast does not appear even by typing /cast on

Code:
PrivateChatChannel* channel = g_chat.getPrivateChannel(_player);
        if(channel)
        {
            sendCreatePrivateChannel(channel->getId(), channel->getName());
            channel->talk("", SPEAK_CHANNEL_RA, (getViewerName() + " has joined the cast."));
            sendCreatureSay(player, SPEAK_PRIVATE, "[Real] Cast communication is turned on.");
        }
        else
            sendCreatureSay(player, SPEAK_PRIVATE, "[Real] Cast communication is turned off.");
        return true;
    }


When I open a normal player it does not open:
image.thumb.png.e98b023692c9b0d7196cb12fc8f890e9.png


When I open a player with GOD it opens:
image.thumb.png.0fc9b97f8d9b43f26ec6f1749415cdf4.png
 
Back
Top