Urban Terror Wiki
Advertisement
This page includes script files for Urban Terror.

Copy the script and paste it into a text editor. Then save it with a .cfg extension in your Game path. To execute, type /exec <script name> in Console.
For more information, see Installing Scripts.

See Category:Scripts & Configs for more information about scripts, scripting, and additional sample scripts.

File-script

by ObScUrE[]

Press F1 down to radio "Affirmative," and vote yes when F1 is released. Same for F2, except says "Negative" and votes no.

On servers where flood protection is on (you will see "Command delayed due to sv_floodprotect"), you can push the button down, wait a few seconds, and then release it. The delay will circumvent flood protection and allow the vote to go through. On servers without flood protection, you can obviously just tap the key as usual and send both commands at once.

bind F1     "+vstr yes1 yes2"
set yes1    "ut_radio 1 1                        ^7*^2Affirmative^7*"
set yes2    "ut_echo ^0[^7Voted ^2Yes^0];        vote yes"

bind F2     "+vstr no1 no2"
set no1     "ut_radio 1 2                        ^7*^1Negative^7*"
set no2     "ut_echo ^0[^7Voted ^1No^0];         vote no"
Advertisement