Hide Orginal message
-
hi
guys im not professional in GSC language so how to hide orginal message from player.
when player type something it's repeat 2 time.
if(self.status == "admin") { say("^1[admin]" + player.Name + "^7:" + message); }
and how can hide commands when player type like this !test, i mean if player message start with "!" hide all the chat he/she sent and nothing showing in main chat.
thx
-
RAVEN Maybe try putting
if(self.status == "admin") { say("^1[admin]" + player.Name + "^7:" + message); return true; }
or
if(self.status == "admin") { say("^1[admin]" + player.Name + "^7:" + message); return false; }
-
RAVEN If a player types a message starting with the "/" token the message won't display but will still trigger the say notify.
-
Kalitos nope not working.
-
JezuzLizard i know this option but there is way to put "/" before command?