Tune zone question

Request help for teeworlds-related subjects (mapping, servers, ..).
For client issues, see our repositories (https://github.com/ddnet/ddnet/issues).
Post Reply
User avatar
Ryozuki
Posts: 1748
Joined: Tue Feb 24, 2015 7:28 am
Location: Catalonia
Player profile: http://ddnet.org/players/Ryozuki/
Mapper profile: http://ddnet.tw/mappers/Ryozuki/
Clan: Unique
Website: https://edgarluque.com
Discord: Ryozuki#2188

Tune zone question

Post by Ryozuki »

Actually i'm working on a special map (idk if it wil be a fail or no xD)

I want to know if it's possible to slow down the animation of the hammer with tune zones or something
Welf
Posts: 1838
Joined: Fri Jun 06, 2014 12:20 am
Player profile: http://ddnet.org/players/Welf/
Mapper profile: http://ddnet.tw/mappers/Welf/

Re: Tune zone question

Post by Welf »

http://ddnet.org/settingscommands/
scroll down to "Tunings", there you can see all possibilities with tune zones

slowing down animations with tune zones is not possible
User avatar
babak2010
Posts: 101
Joined: Sun Jan 18, 2015 8:06 pm
Location: IR
Player profile: http://ddnet.org/players/GoJE-32-GrEEN-32--33-/
Mapper profile: http://ddnet.tw/mappers/GoJE-32-GrEEN-32--33-/

Re: Tune zone question

Post by babak2010 »

https://github.com/def-/ddnet/blob/DDRa ... ning.h#L56
hammer_fire_delay default is 125.
solow down the animation ! idt so.
Click Me : Happy Halloween :twisted: <3
User avatar
Ryozuki
Posts: 1748
Joined: Tue Feb 24, 2015 7:28 am
Location: Catalonia
Player profile: http://ddnet.org/players/Ryozuki/
Mapper profile: http://ddnet.tw/mappers/Ryozuki/
Clan: Unique
Website: https://edgarluque.com
Discord: Ryozuki#2188

Re: Tune zone question

Post by Ryozuki »

It doesn't it only applys more coldown betwen hammers
User avatar
deen
TECHNICAL Team
Posts: 3579
Joined: Mon May 05, 2014 2:30 pm
Player profile: https://ddnet.org/players/deen/
Discord: deen#5910

Re: Tune zone question

Post by deen »

While we're at tune zones and slowing stuff down, I tried to make a few interesting tune zones today, slow-mo is quite fun (but not accurate), even if the hammer hammers too fast:

Code: Select all

tune_zone_enter 0 "Grenade Jetpack"
tune_zone 0 grenade_fire_delay 150
tune_zone 0 grenade_lifetime 0.05

tune_zone_enter 1 "Shotgun Strong Push"
tune_zone 1 shotgun_strength -20

tune_zone_enter 2 "Strong Gravity (fun with infinite jump)"
tune_zone 2 gravity 2

tune_zone_enter 3 "Longer hook (for drag parts)"
tune_zone 3 hook_duration 2.5

tune_zone_enter 4 "Slow Motion 2x"
tune_zone 4 ground_control_speed 5
tune_zone 4 air_control_speed 2.5
tune_zone 4 ground_control_accel 1
tune_zone 4 air_control_accel 0.75
tune_zone 4 gravity 0.25
tune_zone 4 air_friction 0.975
tune_zone 4 air_jump_impulse 8.5
tune_zone 4 ground_jump_impulse 9.5
tune_zone 4 hook_fire_speed 40
tune_zone 4 hook_drag_accel 1.5
tune_zone 4 hook_drag_speed 7.5
tune_zone 4 grenade_speed 500
tune_zone 4 grenade_lifetime 4
tune_zone 4 gun_speed 1100
tune_zone 4 gun_lifetime 4
tune_zone 4 hook_duration 2.5
tune_zone 4 laser_bounce_delay 300
tune_zone 4 hammer_fire_delay 250
tune_zone 4 gun_fire_delay 250
tune_zone 4 shotgun_fire_delay 1000
tune_zone 4 grenade_fire_delay 1000
tune_zone 4 laser_fire_delay 1600
tune_zone 4 ninja_fire_delay 1600

tune_zone_enter 5 "Slow Motion 4x"
tune_zone 5 ground_control_speed 2.5
tune_zone 5 air_control_speed 1.25
tune_zone 5 ground_control_accel 0.5
tune_zone 5 air_control_accel 0.375
tune_zone 5 gravity 0.125
tune_zone 5 air_friction 0.9875
tune_zone 5 air_jump_impulse 5.5
tune_zone 5 ground_jump_impulse 6.5
tune_zone 5 hook_fire_speed 20
tune_zone 5 hook_drag_accel 0.75
tune_zone 5 hook_drag_speed 3.75
tune_zone 5 grenade_speed 250
tune_zone 5 grenade_lifetime 8
tune_zone 5 gun_speed 550
tune_zone 5 gun_lifetime 8
tune_zone 5 hook_duration 5
tune_zone 5 laser_bounce_delay 600
tune_zone 5 hammer_fire_delay 500
tune_zone 5 gun_fire_delay 500
tune_zone 5 shotgun_fire_delay 2000
tune_zone 5 grenade_fire_delay 2000
tune_zone 5 laser_fire_delay 3200
tune_zone 5 ninja_fire_delay 3200

tune_zone_enter 6 "Slow Motion 8x"
tune_zone 6 ground_control_speed 1.25
tune_zone 6 air_control_speed 0.625
tune_zone 6 ground_control_accel 0.25
tune_zone 6 air_control_accel 0.1875
tune_zone 6 gravity 0.0625
tune_zone 6 air_friction 0.99375
tune_zone 6 air_jump_impulse 3.75
tune_zone 6 ground_jump_impulse 4.75
tune_zone 6 hook_fire_speed 10
tune_zone 6 hook_drag_accel 0.375
tune_zone 6 hook_drag_speed 1.875
tune_zone 6 grenade_speed 125
tune_zone 6 grenade_lifetime 16
tune_zone 6 gun_speed 275
tune_zone 6 gun_lifetime 16
tune_zone 6 hook_duration 10
tune_zone 6 laser_bounce_delay 1200
tune_zone 6 hammer_fire_delay 1000
tune_zone 6 gun_fire_delay 1000
tune_zone 6 shotgun_fire_delay 4000
tune_zone 6 grenade_fire_delay 4000
tune_zone 6 laser_fire_delay 6400
tune_zone 6 ninja_fire_delay 6400
User avatar
deen
TECHNICAL Team
Posts: 3579
Joined: Mon May 05, 2014 2:30 pm
Player profile: https://ddnet.org/players/deen/
Discord: deen#5910

Re: Tune zone question

Post by deen »

Another fun tunezone is to make the hook very slow. Then you have to shoot through a tunnel and keep up with the speed of your hook:

Code: Select all

tune_zone_enter 7 "Stay close to your hook"
tune_zone 7 hook_fire_speed 1
User avatar
Ryozuki
Posts: 1748
Joined: Tue Feb 24, 2015 7:28 am
Location: Catalonia
Player profile: http://ddnet.org/players/Ryozuki/
Mapper profile: http://ddnet.tw/mappers/Ryozuki/
Clan: Unique
Website: https://edgarluque.com
Discord: Ryozuki#2188

Re: Tune zone question

Post by Ryozuki »

deen wrote:While we're at tune zones and slowing stuff down, I tried to make a few interesting tune zones today, slow-mo is quite fun (but not accurate), even if the hammer hammers too fast:

Code: Select all

tune_zone_enter 0 "Grenade Jetpack"
tune_zone 0 grenade_fire_delay 150
tune_zone 0 grenade_lifetime 0.05

tune_zone_enter 1 "Shotgun Strong Push"
tune_zone 1 shotgun_strength -20

tune_zone_enter 2 "Strong Gravity (fun with infinite jump)"
tune_zone 2 gravity 2

tune_zone_enter 3 "Longer hook (for drag parts)"
tune_zone 3 hook_duration 2.5

tune_zone_enter 4 "Slow Motion 2x"
tune_zone 4 ground_control_speed 5
tune_zone 4 air_control_speed 2.5
tune_zone 4 ground_control_accel 1
tune_zone 4 air_control_accel 0.75
tune_zone 4 gravity 0.25
tune_zone 4 air_friction 0.975
tune_zone 4 air_jump_impulse 8.5
tune_zone 4 ground_jump_impulse 9.5
tune_zone 4 hook_fire_speed 40
tune_zone 4 hook_drag_accel 1.5
tune_zone 4 hook_drag_speed 7.5
tune_zone 4 grenade_speed 500
tune_zone 4 grenade_lifetime 4
tune_zone 4 gun_speed 1100
tune_zone 4 gun_lifetime 4
tune_zone 4 hook_duration 2.5
tune_zone 4 laser_bounce_delay 300
tune_zone 4 hammer_fire_delay 250
tune_zone 4 gun_fire_delay 250
tune_zone 4 shotgun_fire_delay 1000
tune_zone 4 grenade_fire_delay 1000
tune_zone 4 laser_fire_delay 1600
tune_zone 4 ninja_fire_delay 1600

tune_zone_enter 5 "Slow Motion 4x"
tune_zone 5 ground_control_speed 2.5
tune_zone 5 air_control_speed 1.25
tune_zone 5 ground_control_accel 0.5
tune_zone 5 air_control_accel 0.375
tune_zone 5 gravity 0.125
tune_zone 5 air_friction 0.9875
tune_zone 5 air_jump_impulse 5.5
tune_zone 5 ground_jump_impulse 6.5
tune_zone 5 hook_fire_speed 20
tune_zone 5 hook_drag_accel 0.75
tune_zone 5 hook_drag_speed 3.75
tune_zone 5 grenade_speed 250
tune_zone 5 grenade_lifetime 8
tune_zone 5 gun_speed 550
tune_zone 5 gun_lifetime 8
tune_zone 5 hook_duration 5
tune_zone 5 laser_bounce_delay 600
tune_zone 5 hammer_fire_delay 500
tune_zone 5 gun_fire_delay 500
tune_zone 5 shotgun_fire_delay 2000
tune_zone 5 grenade_fire_delay 2000
tune_zone 5 laser_fire_delay 3200
tune_zone 5 ninja_fire_delay 3200

tune_zone_enter 6 "Slow Motion 8x"
tune_zone 6 ground_control_speed 1.25
tune_zone 6 air_control_speed 0.625
tune_zone 6 ground_control_accel 0.25
tune_zone 6 air_control_accel 0.1875
tune_zone 6 gravity 0.0625
tune_zone 6 air_friction 0.99375
tune_zone 6 air_jump_impulse 3.75
tune_zone 6 ground_jump_impulse 4.75
tune_zone 6 hook_fire_speed 10
tune_zone 6 hook_drag_accel 0.375
tune_zone 6 hook_drag_speed 1.875
tune_zone 6 grenade_speed 125
tune_zone 6 grenade_lifetime 16
tune_zone 6 gun_speed 275
tune_zone 6 gun_lifetime 16
tune_zone 6 hook_duration 10
tune_zone 6 laser_bounce_delay 1200
tune_zone 6 hammer_fire_delay 1000
tune_zone 6 gun_fire_delay 1000
tune_zone 6 shotgun_fire_delay 4000
tune_zone 6 grenade_fire_delay 4000
tune_zone 6 laser_fire_delay 6400
tune_zone 6 ninja_fire_delay 6400
i made that 1 month ago an tried to do a slowmo map but it's quite dificult ( i mean all the map with slowmo)
User avatar
maggi323
Posts: 191
Joined: Sat Sep 13, 2014 6:57 pm
Player profile: http://ddnet.org/players/maggi323/
Mapper profile: http://ddnet.tw/mappers/maggi323/

Re: Tune zone question

Post by maggi323 »

There was a mod named slowmo or something already years ago, it basicly was dm but with slowmo settings :D
Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 4 guests