• 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!

OTHire - Cast System

Eldora

Banned User
Joined
Oct 19, 2009
Messages
604
Reaction score
26
Please help implement this:

C++:
    void addCastViewer(ProtocolGame* pg) {
        cSpectators.list[nextSpectator] = pg;
        nextSpectator++;

        std::stringstream ss;
        ss << "Spectator " << cast.curId;
        pg->viewerName = ss.str().c_str();
        cast.curId++;
    }

into this:
C++:
        case 0x96:  // say something
            parseSay(msg);
            break;


Basically want to display the spectators name, when typing a (msg).
 
Why don't you use this?

 
Back
Top