PMC websites shut down October 13th 2025 unless yearly web hosting fees are paid. Please Support PMC to help keep these websites online.

Enjoyed or found this pages content useful, please Support PMC to help me keep this web page online beyond october 13th 2025 when yearly web hosting fees are due.

User Tools

Site Tools


arma3:scripting:debug-teleport

This is an old revision of the document!


ArmA 3 Debug Teleport

ArmA 3, Config, Missions, 3D Modeling, Scripting, Terrain, Texturing, Tools

No not to cheat! But to help debug missions when you need to travel from A to B just to check something out, no reason to drive or walk when you can click a map to get there, its called developing ;)

If you are debug testing in mission editor, you will teleport automatically with ALT-LMB mapview click. This will of course leave behind any possible AI group members you have, then they start annoyingly call “where are you”.

ArmA 3 CfgCommunicationMenu Teleport

2021-08-04

description.ext:

class CfgCommunicationMenu
{
	class PMC_DebugTeleport
	{
		text = "PMC_DebugTeleport";
		submenu = "";
		expression = "_this execVM 'PMC\PMC_DebugTeleport.sqf';";
		icon = "";
		cursor = "";
		enable = "1";
		removeAfterExpressionCall = 0;
	};
};

init.sqf:

0 = [player, "PMC_DebugTeleport", nil, nil, ""] call BIS_fnc_addCommMenuItem;

PMC_DebugTeleport.sqf:

onMapSingleClick "player setPos _pos; onMapSingleClick ''; true;";
arma3/scripting/debug-teleport.1656181181.txt.gz · Last modified: 2022/06/25 18:19 by snakeman