im on my psp and the reseption in my room is 20% and it takes 4 ever so when i make a mistake it is too hard to fix eny way i did default add ons and just the tranqulizer and nothing
out of the .zip file
//we need the horse add-on for this, so force it to load
%error = ForceRequiredAddOn("Item_skis");
if(%error == $Error::AddOn_Disabled)
{
//A bit of a hack:
// we just forced the horse to load, but the user had it disabled
// so lets make it so they can't select it
HorseArmor.uiName = "";
}
if(%error == $Error::AddOn_NotFound)
{
//we don't have the horse, so we're screwed
error("ERROR: Weapon_tranquilizer - required add-on Item_skis not found");
}
else
{
exec("./Weapon_tranquilizer.cs");
}