Oh, yeah, forgot that that would happen. You are on the right track, though. Removing
, prefix=True will work, as False is the default value for it for every message type. You will want to do that for each message that you have removed, though. Some of them just use
, True as they don't provide any value for the "tokens" variable when passed.
For instance, the message sent when players respawn is:
saytext2('#human', ggPlayer.index, 'RespawningPlayer',
{'player': es.getplayername(userid)}, True)
So, remove the
, True which makes it look like:
saytext2('#human', ggPlayer.index, 'RespawningPlayer',
{'player': es.getplayername(userid)})
Satoon