I am trying to install the right click deploy script:
When I add it I get this when right clicking on my toolbox:

It's missing the Deploy Bike option. If I click on the blank space, nothing happens.
Here's my ui_selectSlot.sqf: http://pastebin.com/s9k69PRh
Here's my extra_rc.hpp:
class ExtraRc {
class ItemRadio {
class GroupManagement {
text = "Group Management";
script = "execVM 'custom\dzgm\loadGroupManagement.sqf'";
};
};
class ItemToolbox {
class BuildBike {
text = "Deploy Bike";
script = "['MMT_Civ'] execVM 'custom\EVD\EVD_deploy.sqf'";
};
class BuildMotorcycle {
text = "Deploy Motorcycle";
script = "['TT650_Civ'] execVM 'custom\EVD\EVD_deploy.sqf'";
};
class BuildMozzie {
text = "Deploy Mozzie";
script = "['CSJ_GyroC'] execVM 'custom\EVD\EVD_deploy.sqf'";
};
};
};
If anyone has suggestions on why this would happen, it would be appreciated!

