jimmya3

Donator
  • Content count

    62
  • Donations

    10.00 EUR 
  • Joined

  • Last visited

Community Reputation

12 Neutral

1 Follower

About jimmya3

  • Rank
    Inmate
  • Birthday 06/16/1986

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. jimmya3

    Arma Redux Radiation.

    I'm not 100% positive if this is still used or not but in the class Radiation I think I had something along the lines of this contaminatedZones[] = { {{x,y,z},250,250}, }; Just put your coordinates in where the x,y,z is and try it. But besides that it looks right.
  2. jimmya3

    .

    .
  3. Have found someone! You can delete this! Thanks!
  4. jimmya3

    Chernarus redux

    @Chernarus That could be he Redux just under a different name. The mission appears to load fine from what I am seeing. I'm not sure bud.
  5. jimmya3

    Arma 3 exile Cup Mods

    Link your full RPT. Something done goofed up.
  6. jimmya3

    Newbie needs help with Chernarus Redux

    Delete #Chernarus Loot Positions - Replaced CfgBuildings#include "ChernarusreduxLootBuildings.cpp" I don't know why you have a # in front on the first line. That should be a // if you were just trying to make a note in the file. Delete everything from class CfgExileLootServer to class CfgSettings Then insert this: class CfgBuildings { class CivilianFarm { table = "CivilianFarm"; }; class CivilianVillage { table = "CivilianVillage"; }; class CivilianCity { table = "CivilianCity"; }; class CivillianElite { table = "CivillianElite"; }; class Factories { table = "Factories"; }; class Industrial { table = "Industrial"; }; class Medical { table = "Medical"; }; class Military_Low { table = "Military_Low"; }; class Military_Medium { table = "Military_Medium"; }; class Military_High { table = "Military_High"; }; class Shop { table = "Shop"; }; class Tourist { table = "Tourist"; }; class VehicleService { table = "VehicleService"; }; #include "ChernarusreduxLootBuildings.cpp" }; You may want to rename the ChernarusreduxLottBuildings.cpp to end in .hpp and rename the file as such. I honestly do not know if it will matter. But try that out.
  7. jimmya3

    Newbie needs help with Chernarus Redux

    @Serpz Do you have your loot file called in the config.cpp? Like such in my exile_server_config class CfgBuildings { class CivilianFarm { table = "CivilianFarm"; }; class CivilianVillage { table = "CivilianVillage"; }; class CivilianCity { table = "CivilianCity"; }; class CivillianElite { table = "CivillianElite"; }; class Factories { table = "Factories"; }; class Industrial { table = "Industrial"; }; class Medical { table = "Medical"; }; class Military_Low { table = "Military_Low"; }; class Military_Medium { table = "Military_Medium"; }; class Military_High { table = "Military_High"; }; class Shop { table = "Shop"; }; class Tourist { table = "Tourist"; }; class VehicleService { table = "VehicleService"; }; #include "LootPositions.hpp" }; The #include "LootPositions.hpp" This is if you use the external call/file for loot
  8. jimmya3

    Enigma Revive Troubles

    Have fun
  9. jimmya3

    Error message in RPT Need an extra eyeball

    For instance, heres how I have my most wanted added in { #include "MostWanted_Client\NetworkMessages.hpp" }; Like I said, I'm not sure if that is the problem but this is how each of those need to be added you leaving it to start with just { and not closing it right after with }; Try it and if it doesn't work then just undo it. I'm just giving you some advice as this is the format I have some of mine. class CraftingRecipes { #include "EBM\Recipes.hpp" }; { class BreachingChargeBigMomma: Exile_AbstractCraftingRecipe { name = "Breaching Charge (Concrete)"; pictureItem = "Exile_Item_BreachingCharge_BigMomma"; returnedItems[] =
  10. jimmya3

    Error message in RPT Need an extra eyeball

    Did you try it or not?
  11. jimmya3

    Error message in RPT Need an extra eyeball

    ErrorMessage: File mpmissions\\Exile.Altis\\config.cpp, line 59: /: \'#\' encountered instead of \'{\' #include "EBM\\recipes.hpp" Should be like { #include "EBM\\recipes.hpp" }; Look at yours and adjust. I think that's what it s but try it.
  12. jimmya3

    Newbie needs help with Chernarus Redux

    Lol, yup sometimes you just get Arma'd.
  13. jimmya3

    Newbie needs help with Chernarus Redux

    Using your loot config, I found the duped class around line 690. After removing it I am able to load my test server just fine with your loot config.