HX3 Foren

HX3 Foren (https://hx3.de/)
-   Editing & Scripting (https://hx3.de/editing-scripting-167/)
-   -   erstellte gruppe folgt dem wegpunkt nicht! (https://hx3.de/editing-scripting-167/erstellte-gruppe-folgt-wegpunkt-17235/)

analmane 02.07.2009 14:42

erstellte gruppe folgt dem wegpunkt nicht!
 
hallo erstmal!
ich erstelle über funk eine gruppe ,funktioniert auch super. nur mein problem ist,das diese erstellte gruppe nur rumsteht! habe ein unsichtbares h erstellt namens ziel
das script:


Code:

_pos = getPos guepos;
_skill = [0.6, 0.6];
_side = Resistance;
_units = ["GUE_Soldier_CO", "GUE_Soldier_MG", "GUE_Soldier_1", "GUE_Soldier_2", "GUE_Soldier_3", "GUE_Soldier_GL", "GUE_Soldier_AT", "GUE_Soldier_MG", "GUE_Soldier_GL","GUE_Soldier_SCOUT"];
_newGroup = [_pos, _side, _units, [], [], _skill] call BIS_fnc_spawnGroup;


_this = _newGroup addWaypoint [[ziel], 0];
_this setWaypointSpeed "FULL";
_this setWaypointBehaviour "COMBAT";
_this setWaypointType "MOVE";
[_this, 0] setWaypointCombatMode "RED";
_waypoint_0 = _this;



Alle Zeitangaben in WEZ +1. Es ist jetzt 20:06 Uhr.

Angetrieben durch vBulletin, Entwicklung von Philipp Dörner & Tobias


SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119