Script Plugin - Version 3.3 - User Guide
Filename: plugin_blatt_script
Offline Manual
You are reading this offline manual for this plugin. The links to the right
navigate through the offline information. The links above and to the left
link to www.ravenousbugblatterbeast.pwp.blueyonder.co.uk.
If you downloaded the plugin from somewhere else, or downloaded it some time ago,
I recomend you check for an updated plugin. Note that the on-line manual may have been updated
even if the plugin hasn't.
Limitations of script
The scripts created with this plugin are intentionally basic - there are no conditional statements,
and no loops other than looping the entire script. This plugin is intended to allow non-programmers to
sequence events on their server. Anything more complex and you can create an AMX plugin for Admin Mod
to perform the task using timers and exec() calls.
Running client-side commands
The script plugin does not allow you to execute the command admin_execclient as this
requires an access level of 65536. In order to run client commands, prefix the command
with exec. e.g. The following script displays the scoreboard at the end of each round:
wait 1 rounds
exec +showscores
wait 2 seconds
exec -showscores
One time only scripts
If you only want your script to run once rather than repeat continuously, add the line "quit" to the
end of it.
|