I'm trying to do this command:
bind p "say Hello;say bye"
The server has an anti-spam filter, is there a wait to pause the commands for one second?
bind p "say Hello;wait;wait;say bye"
that should do it
The wait command was removed a very long time ago. If you can run clientside lua,
[code]bind p "say Hello;lua_run_cl timer.Simple(1, function() RunConsoleCommand('say', 'Bye') end)[/code]
Sorry, you need to Log In to post a reply to this thread.