[Need Help]-->[RELEASE] Deploy vehicles, done the right way.

Smoky

New Member
Hello everybody, i have Deploy Vehicles done the right way installed on my Server.
Now i have a problem, i can´t deploy a Bike. I can deploy bird and moto but not a Bike :(

deploy1.png



Under the helicopter is an empty line.

Does anyone know how I can solve the problem?
 
Ok i think i see your problem in your ui_selectSlot.sqf you have taken out the Bicycle but haven't sorted out the list for example

Code:
        _menu = _parent displayCtrl (1600 + 1);
        _menu ctrlShow true;
        _type = "Deploy motorcycle";
        _script = "DamiMods\Deploy\deploy_moto.sqf";
        _height = _height + (0.025 * safezoneH);
        _compile = format["_id = '%2' execVM '%1';closeDialog 0;",_script,_item];
        uiNamespace setVariable ['uiControl', _control];
        _menu ctrlSetText format[_type,_name];
        _menu ctrlSetTextColor [1,0,0,1];
        _menu ctrlSetEventHandler ["ButtonClick",_compile];
       
        _menu = _parent displayCtrl (1600 + 2);
        _menu ctrlShow true;
        _type = "Deploy MH6J";
        _script = "DamiMods\Deploy\deploy_bird.sqf";
        _height = _height + (0.025 * safezoneH);
        _compile = format["_id = '%2' execVM '%1';closeDialog 0;",_script,_item];
        uiNamespace setVariable ['uiControl', _control];
        _menu ctrlSetText format[_type,_name];
        _menu ctrlSetTextColor [1,0,0,1];
        _menu ctrlSetEventHandler ["ButtonClick",_compile];
    };

see how i inserted it at 1600+1 and 1600 + 2 yours will say 1600 + 2 and 1600 +3 think that is why its showing an empty slot try changing it and see if it works

Please message back if it works

Thanks

Camoshooter
 
Back
Top