HX3 Foren

HX3 Foren (https://hx3.de/)
-   Editing & Scripting (https://hx3.de/editing-scripting-187/)
-   -   VVS und VAS funktionieren nicht (https://hx3.de/editing-scripting-187/vvs-vas-funktionieren-23384/)

DennisBI 15.02.2014 16:27

VVS und VAS funktionieren nicht
 
Hallo Arma Community,

für eine Mission möchte ich gerne eine Airtual ammo box und ein virtual vehicle spawner in der selben Mission verwenden. Doch beide funktionieren nicht.
Ich bin noch absoluter Anfänger in Thema Missionsbau.
Das habe ich in meiner Description

author = "Tonic AKA TAW_Tonic";
onLoadName = "Virtual Vehicle Spawner example mission.";
OnLoadMission = "Virtual Vehicle Spawner";
respawn = BASE;
respawndelay = 10;
disabledAI = true;

class CfgFunctions
{
#include "VVS\Functions.h"
#include "VAS\cfgfunctions.hpp"
};

TeilX 15.02.2014 16:50

Sieht in der beschreibung auch ein wenig anders aus;)
PHP-Code:

#include "VAS\menu.hpp"

class CfgFunctions
{
    
#include "VAS\cfgfunctions.hpp"
}; 

keine ahnung ob's daran liegt... noch nicht verwendet

TeilX 15.02.2014 16:54

PHP-Code:

#include "VAS\menu.hpp"
#include "VVS\menu.h"

class CfgFunctions
{
    
#include "VAS\cfgfunctions.hpp"
        #include "VVS\Functions.h"
}; 


DennisBI 15.02.2014 17:51

Funktioniert super.

Danke


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