Workshop help, teleporting between maps

I was playing through some custom games in overwatch and I came across one where it teleports you between different maps and I was wondering how that is done. If you know please tell me.

On Control maps, you can locate the position of all 3 objectives with Objective Position(0), Objective Position(1), and Objective Position(2). You can use the Teleport(...) action on players to teleport them to these positions.

2 Likes

Thank you, I am just now getting into workshop creations and this helps a lot.

It’s because the 3 control points of a control map are all on the same map at different coordinates.

I was also wondering if there is a way to have a variable round so that it doesn’t have decimal places

round to integer()

how do i do that in overwatch

It is literally the action “round to integer”. Use it like this:

global.floatNumber = *number*
-->
global.integerNumber = round to integer(*number*, nearest)

while “number” can be a number or variable etc.

Nvm i figured it out, thanks so much for the help.

1 Like