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

C++ Doubt

Kokho

-мapper on proceѕѕ-
Joined
Mar 19, 2012
Messages
99
Reaction score
8
Hello, im looking for a script that prevent illegal advertising on OT... I searched in entire c++ section but didnt found anything like that..

Someone know a script for that?
i dont even know if only need a globalevent but i would like a source edition that make a log of URLS send from any of players on the channel and who did.
thanks :$
 
[CPP]#include <string>[/CPP]
Lets say the say output is TextSaid
[CPP]if(TextSaid.find(".org")){
send some error message ~
return;
}[/CPP]

You could do some arrays or w/e to define the strings not allowed.
 
Back
Top