Don't Starve Together

Don't Starve Together

Bubble Dec 21, 2016 @ 1:21pm
Console Command [Help] For [Walking Speed]
how i give other players walking speed with console commands or anything ?

Example : c_speedmult(multiplier)

İ want to give walking speed other players in my game

İm wating every Solution for walking speed

< >
Showing 1-11 of 11 comments
wapachoo Dec 21, 2016 @ 3:16pm 
..don't cheat?
http://dontstarve.wikia.com/wiki/Console/Don%27t_Starve_Together_Commands

I don't see anything that specifically fits your request, but there are several things you could try.

For instance, there's this command:
UserToPlayer('PlayerA'):PushEvent('death')

Which, perhaps, you might be able to modify to:
UserToPlayer('PlayerA'):c_speedmult(multiplier)

... or some variation thereof. I don't *know* that this will work. Just a suggestion to try.

Another thing that *might* work would be:
c_speedmult(AllPlayers[number],multiplier)

Probably I'd try that one first. It seems the more likely format to work, to me.

Good luck!
Someone Dec 22, 2016 @ 2:20am 
If you find the solution let me know id also like to try it
Bubble Dec 22, 2016 @ 7:55am 
İm still wating for any solition
Last edited by Bubble; Dec 22, 2016 @ 7:56am
Did you try either of the suggestions I made? Or variations of your own that you came up with?
Bubble Dec 22, 2016 @ 8:37am 
Originally posted by Musmayostardayonnaise:
Did you try either of the suggestions I made? Or variations of your own that you came up with?

They dont wok im tried
Bubble Dec 22, 2016 @ 8:43am 
Originally posted by Musmayostardayonnaise:
http://dontstarve.wikia.com/wiki/Console/Don%27t_Starve_Together_Commands

I don't see anything that specifically fits your request, but there are several things you could try.

For instance, there's this command:
UserToPlayer('PlayerA'):PushEvent('death')

Which, perhaps, you might be able to modify to:
UserToPlayer('PlayerA'):c_speedmult(multiplier)

... or some variation thereof. I don't *know* that this will work. Just a suggestion to try.

Another thing that *might* work would be:
c_speedmult(AllPlayers[number],multiplier)

Probably I'd try that one first. It seems the more likely format to work, to me.

Good luck!

UserToPlayer('PlayerA'):c_speedmult(multiplier)
What i need write in ('PlayerA') ?

OR

What i need write in (AllPlayers[number],multiplier) = >> [number] what Number ?
Originally posted by Pamuk:

UserToPlayer('PlayerA'):c_speedmult(multiplier)
What i need write in ('PlayerA') ?

OR

What i need write in (AllPlayers[number],multiplier) = >> [number] what Number ?

From the same wiki page I linked, there's a command to find out each player's number on the server.

If you're the host, and the only one on, you'd be 1. Then next person to join should be 2, so if you wanted to increase their speed you could try opening the console and typing:

c_speedmult(AllPlayers[2],multiplier)

... replacing "multiplier" with whatever speed multiplier you wish them to have.
Bubble Dec 22, 2016 @ 11:02am 
Originally posted by Musmayostardayonnaise:
Originally posted by Pamuk:



c_speedmult(AllPlayers[2],multiplier)

... replacing "multiplier" with whatever speed multiplier you wish them to have.

Not Working

can i get more soliton
NotBuggy Dec 2, 2020 @ 4:18pm 
I know the subject is inactive since long time but solution is there :

To apply any command to another player copy this line :

c_select(AllPlayers[number]) c_speedmult(multiplier)

number is the number of the player, and multiplier the speed you want.

To apply any command to all players the command is :

for k,v in pairs(AllPlayers) do c_select(v) c_speedmult(multiplier) end

c.speedmult(multiplier) can be any other command like c_makeinvisible()

TridentBogo Nov 26, 2022 @ 2:12am 
thanks.

for k,v in pairs(AllPlayers) do c_select(v) c_speedmult(2) end


speed is 2 x times.
< >
Showing 1-11 of 11 comments
Per page: 1530 50

Date Posted: Dec 21, 2016 @ 1:21pm
Posts: 11