HX3 Foren

HX3 Foren (https://hx3.de/)
-   Editing (https://hx3.de/editing-139/)
-   -   West East Resistance (https://hx3.de/editing-139/west-east-resistance-17515/)

Hercules-HH 23.07.2009 15:20

West East Resistance
 
Ich hab ein kleines Problem:

Ich möchte Gruppen erstellen. bei East/west geht das auch aber bei Wiederstand nicht

Code:

hint "Kauf1";
Infsdefu1 = Creategroup resistance;
_Leader="SoldierGG" createUnit [position Baseu1, Infsdefu1, "Infsdefu1a=this", 0.8, "Colonel"];
_Unit2="SoldierGSaboteurMarksman" createUnit [position Baseu1, Infsdefu1, "Infsdefu1b=this", 0.8, "Major"];
_Unit3="SoldierGAT" createUnit [position Baseu1, Infsdefu1, "Infsdefu1c=this", 0.75, "Captain"];
_Unit4="SoldierGB" createUnit [position Baseu1, Infsdefu1, "Infsdefu1d=this", 0.75, "Lieutenant"];
_Unit5="SoldierGMG" createUnit [position Baseu1, Infsdefu1, "Infsdefu1e=this", 0.75, "Sergeant"];
_Unit6="SoldierGAT" createUnit [position Baseu1, Infsdefu1, "Infsdefu1f=this", 0.75, "Corporal"];
_Unit7="SoldierGG" createUnit [position Baseu1, Infsdefu1, "Infsdefu1g=this", 0.75, "Private"];
~1

Sobald ich das wort Resistance gegen east eintasche geht alles wieder. aber wie erstelle ich nun Gruppe wiederstand?

Hercules-HH 23.07.2009 15:45

Ich hab jetzt herausgefunden, dass man vorher einfach eine Einheit Resistance hinsetzten muss. Jetzt geht es. Warum auch immer. Man war ich verzweifelt....

SmartGun 23.07.2009 16:42

Hi,

was gefehlt hat ist ein "AI center"
das braucht die KI einer seite um komunizieren zu können usw.

wenn du eine einheit im editor gesetzt hast, wird nach missionsstart automatisch ein center erstellt. Beim nachträglichen erzeugen via "createunit"
muss das center manuel erzeugt werden. Das geht dan mit

Code:

createcenter east
alles gut erklährt in Mr. Murrays Guide auf Seite 107


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:22 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