HX3 Foren

HX3 Foren (https://hx3.de/)
-   Editing (https://hx3.de/editing-139/)
-   -   Defines Air Class Vehicles (https://hx3.de/editing-139/defines-air-class-vehicles-13865/)

Murdy 13.12.2006 14:23

Defines Air Class Vehicles
 
:komisch: Hallo leutz

Wie definier ich eine neue Air class? Ich mochte dass die sla auch ein AHZ1 bekommen mit neuen Texturen?


Murdy 13.12.2006 16:46

Okay nach langen suchen habe ich glaube die Deklaration gefunden.
Weiß einer wie es weitergeht?
Ich möchte z.B. dass der AH1Z dann für die SLA AH2Z heißt!


class AH1W : Helicopter {
selectionHRotorStill = "mainRotorStatic";
selectionHRotorMove = "mainRotorBlurred";
selectionVRotorStill = "tailRotorStatic";
selectionVRotorMove = "tailRotorBlurred";
memoryPointLMissile = "Missile_1";
memoryPointRMissile = "Missile_2";
memoryPointLRocket = "Rocket_1";
memoryPointRRocket = "Rocket_2";
selectionFireAnim = "muzzleflash";
crew = "SoldierWPilot";//steht das SoldierW für westen?
scope = 2;
side = 1;
displayName = $STR_DN_AH1Z; //Hier jetzt AH2Z eintragen?
nameSound = "cobra";
accuracy = 0.3;
driverAction = "AH1Z_Pilot"; //Hier jetzt AH2Z eintragen?
crewVulnerable = 0;
maxSpeed = 270;
typicalCargo[] = {"SoldierWPilot", "SoldierWPilot"};
soundGetIn[] = {"\ca\air\Data\Sound\heli_door1", 0.1, 1};
soundGetOut[] = {"\ca\air\Data\Sound\heli_door1", 0.1, 1};
soundEngine[] = {"\ca\air\Data\Sound\AH1_engine_v3a", 1778.28, 1};
armor = 60;
cost = 10000000;
model = "\ca\air\ah1z"; //Hier jetzt AH2Z eintragen?
picture = "\ca\air\data\ico\ah1z_CA.paa"; //Hier jetzt AH2Z?
mapSize = 13;
Icon = "\ca\air\data\map_ico\icomap_ah1z_CA.paa";//Hier jetzt AH2Z?
memoryPointsGetInDriver = "pos_driver";
memoryPointsGetInDriverDir = "pos_driver_dir";

Murdy 20.12.2006 15:58

Habe das problem anders gelöst
http://hx3.de/editing-139/problem-fr...05/#post147180 :angel:


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