News: 1up Discord VOIP
Invite Code: https://discord.gg/VPv9JhP

Author Topic: Some Cool Scripts  (Read 11512 times)

0 Members and 1 Guest are viewing this topic.

Offline UncleSam

  • Posts: 279
  • Karma: -2
  • Since: 22/01/2013
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Some Cool Scripts
« on: April 02, 2013, 05:47:35 PM »
I've recently found some pretty cool scripts, I'll put them here.  Most of these require vstr support so you need to download the mitsu client
None most are not mine, just found them.
http://www.urbanterror.info/forums/topic/18972-optimized-exe-builds-of-ioq3-engine/       <---  4.1.1
http://www.r00t.cz/SW/UrbanTerror       <----   4.2

I recommend copying urt folder and trying the new client and scripts in that version.




Code: [Select]
set thrownade1 "weapon 11; wait 10; +attack; wait 8"
set thrownade2 "-attack; wait 8; ut_weaptoggle primary"
bind f "+vstr thrownade1 thrownade2"

hit the f key to arm a nade release to throw. (vstr)  if you have a gaming mouse consider replacing f with MOUSE4 or MOUSE5
Thanks to Obscure


Code: [Select]
set zoom_in "ut_zoomin; cg_fov 90"
set zoom_out "ut_zoomreset; cg_fov 100"
bind MOUSE2 "+vstr zoom_in zoom_out"

zooms in your weapon hold to zoom. works with any weapon. (vstr)
Thanks to |PWNY|Nitro


Code: [Select]
bind r "+vstr w_reload w_rstop"      //heal and reload, with zoom reset (1)
// ensure zoom mode is unzoomed when reloading, and start healing first (since we can reload while healing)
set w_reload "+button6; wait 5; -button6; +button6;  wait 5; -button6; +button6; wait 5; +button5; vstr zNot; -button6"
set w_rstop "-button5;"

automatically heals when you reload. (vstr)
Thanks to HonoredMule



Code: [Select]
bind f "vstr attackscript"
set attackscript "vstr attack1"
set attack1 "set attackscript vstr attack2; bind MWHEELDOWN +attack;bind MWHEELUP +attack; "ut_weaptoggle sidearm"; bind MOUSE3 clear; ut_echo fast attack"
set attack2 "set attackscript vstr attack1; bind MWHEELDOWN weapprev; bind MOUSE3 ut_zoomreset; bind MWHEELUP weapnext; ut_echo weapswitch"

auto beretta script.  basically, change to beretta by hitting f, and scroll up and down fast.  When you're done hit f again.  If you have a gaming mouse conside changing f to MOUSE4 or MOUSE5 (the side buttons).  Since I have hold to zoom, I don't need Mouse3 so That's what I have it set to.  This script doesn't shoot as fast as a g36 or anything, but it will get you up to the level of a pro beretta user.  Plus it's easy on your fingers. Also works with DE.  I have implemented a feature so that if you accidentally press MOUSE3 while scrolling up and down it won't do anything. Before it would turn off auto mode.

Thanks to <PWC> YAY5637 from Urban Terror forums.


Code: [Select]
bind f "vstr attaz"
set attaz "vstr attackab"
set attackab "set attaz vstr attackac; bind MOUSE1 vstr attackdrop; ut_echo drop"
set attackac "set attaz vstr attackab; bind MOUSE1 +attack; ut_echo regular"
set attackdrop "+attack; wait 2; ut_weapdrop; -attack; bind MOUSE1 +attack; set attaz vstr attackab; ut_echo regular"

Shoot and drop sr8.  toggle this behavior with f (can be replaced with any key).  Allows fast switch to secondary and sr8 is recocked when you pick it up.  Illegal in tournaments.

Thanks to JRandomNoob




Code: [Select]
bind f "ut_zoomin; +attack"

On curby's request f zooms in and shoots at the same time.  If you want a delay between scoping and shooting change the # sign below.
Currently not working.  Searching for fix.

Code: [Select]
bind f "ut_zoomin; wait #; +attack"




Code: [Select]
bind c "vstr attack_script"
set attack_script "vstr attack1"
set attack1 "bind i snake_up; bind j snake_left; bind k snake_down; bind l snake_right; bind b snake_play; bind n snake_pause; bind m bind_reset; ut_echo snake"
set attack2 "bind n breakout_left; bind m breakout_right; bind h breakout_play; bind j breakout_pause; bind k breakout_reset; ut_echo breakout"

play breakout and snake :D
« Last Edit: April 11, 2013, 04:30:41 PM by UncleSam[1up] »

Offline HonoredMule

  • Posts: 54
  • Karma: 1
  • Since: 19/05/2012
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #1 on: April 02, 2013, 06:11:17 PM »
If you're going to use that last one, you'll need additional excerpts from my config--i.e. the portions that define w_reload and w_stop:

Code: [Select]
// ensure zoom mode is unzoomed when reloading, and start healing first (since we can reload while healing)
set w_reload "+button6; wait 5; -button6; +button6;  wait 5; -button6; +button6; wait 5; +button5; vstr zNot; -button6"
set w_rstop "-button5;"

As you can see I tried really hard to make the pre-heal reliable, but due to UrT bugs it's basically impossible without enforcing a ridiculously long control lockout (those "wait" commands freeze the controls).  This does at least seem to be more responsive and consistent than the trivial solution that ought to work, which would just be set w_reload "+button6; -button6; +button5"

If you're not using my zoom memory system, you can just remove "vstr zNot" from the w_reload command.
« Last Edit: April 02, 2013, 06:13:46 PM by HonoredMule »

Offline UncleSam

  • Posts: 279
  • Karma: -2
  • Since: 22/01/2013
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #2 on: April 02, 2013, 08:37:23 PM »
put it in, thanks.

Offline Curby

  • Posts: 229
  • Karma: 21
  • Since: 08/07/2012
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #3 on: April 04, 2013, 12:16:38 PM »
Nice scripts indeed...
but the only script i really want is a script that makes you scope and shoot at the same time :)
like you can quickscope by pressing one button
"ns"

Offline UncleSam

  • Posts: 279
  • Karma: -2
  • Since: 22/01/2013
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #4 on: April 04, 2013, 06:20:06 PM »
Not hard, go to urt forums and post there, although I would definitely not use a script like that.

Offline DoLT*[1up]

  • Regulating since 1985
  • *[1up] KF Admin
  • [1up] UrT Admin
  • Posts: 619
  • Karma: 46
  • Since: 15/07/2011
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #5 on: April 04, 2013, 06:23:15 PM »
learn to play without scripts...


-grannies are pernonin noobs

Offline Dynasty[1up]

  • *[1up] App Staff
  • [1up] Global Mod
  • [1up] Decision Panel
  • [1up] UrT Admin
  • [1up] KF Admin
  • [1upZ] Zombie
  • Posts: 1,481
  • Karma: -206
  • Water Sleeps....
  • Since: 08/01/2011
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #6 on: April 04, 2013, 06:28:32 PM »
learn to play without scripts...

This statement has been endorsed by the one and only Dynasty[1up]






Change, change, the form of man....
Rise the demon; Etrigan!

Offline UncleSam

  • Posts: 279
  • Karma: -2
  • Since: 22/01/2013
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #7 on: April 04, 2013, 07:07:34 PM »
Oh yeah?  I demand a 1v1 now!!! lol :P  not with dolt he's too good I'll get dynasty I think I could take him.  Try the scripts though, they're awesome.

Offline YoMomma[1upZ]

  • *[1upZ] Zombie
  • Posts: 396
  • Karma: 60
  • I am swaginacup
  • Since: 07/08/2012
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #8 on: April 04, 2013, 07:35:48 PM »
lol sam you can barely take me forget about dynasty :P

Offline UncleSam

  • Posts: 279
  • Karma: -2
  • Since: 22/01/2013
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #9 on: April 04, 2013, 07:46:26 PM »
lol sam you can barely take me forget about dynasty :P

did you make a typo?  I don't understand this.

Offline UncleSam

  • Posts: 279
  • Karma: -2
  • Since: 22/01/2013
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #10 on: April 07, 2013, 02:27:06 PM »
Improved the berretta script.  When you press mouse3 switches to sidearm and has fast attack.  press mouse3 again and you switch weapons.

Offline Curby

  • Posts: 229
  • Karma: 21
  • Since: 08/07/2012
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #11 on: April 07, 2013, 03:07:20 PM »
Improved the berretta script.  When you press mouse3 switches to sidearm and has fast attack.  press mouse3 again and you switch weapons.
i still think mine is better,
to start the script i only have to hold the mouse button,
and then it will start shooting as fast as possible for my ping, which is fast :)
and it goes faster then a g36, just ask sander or premium, they have been raped by it lots of times ^
"ns"

Offline Dynasty[1up]

  • *[1up] App Staff
  • [1up] Global Mod
  • [1up] Decision Panel
  • [1up] UrT Admin
  • [1up] KF Admin
  • [1upZ] Zombie
  • Posts: 1,481
  • Karma: -206
  • Water Sleeps....
  • Since: 08/01/2011
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #12 on: April 07, 2013, 03:08:41 PM »
Here's my script:

Move mouse cursor over enemy;
Fire repeatedly.

Result:

Enemy defeated.



^ That there's gold. :P




Change, change, the form of man....
Rise the demon; Etrigan!

Offline YoMomma[1upZ]

  • *[1upZ] Zombie
  • Posts: 396
  • Karma: 60
  • I am swaginacup
  • Since: 07/08/2012
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #13 on: April 07, 2013, 03:11:38 PM »
Here's my script:

Move mouse cursor over enemy;
Fire repeatedly.

Result:

Enemy defeated.



^ That there's gold. :P
ha

Offline UncleSam

  • Posts: 279
  • Karma: -2
  • Since: 22/01/2013
    YearsYearsYearsYearsYearsYearsYearsYearsYearsYearsYears
Re: Some Cool Scripts
« Reply #14 on: April 07, 2013, 03:14:18 PM »
Here's my script:

Move mouse cursor over enemy;
Fire repeatedly.

Result:

Enemy defeated.



^ That there's gold. :P


If you have a script like that it would be an aimbot.