SharkbiteZero

Member
  • Content count

    8
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Community Reputation

0 Neutral

About SharkbiteZero

  • Rank
    Bambi
  1. SharkbiteZero

    Dauerhaft Tod bzw. am sterben

    jawoll du musst den spieler komplett aus der datenbank entfernen ! hatten wir auf meinem server auch schon ein paar mal. is ein blöder fehler !
  2. SharkbiteZero

    Hilfe !!!!!

    Wo genau liegt denn das Problem ? Eine genauere Beschreibung würde schon helfen.
  3. SharkbiteZero

    Sheep's Slotmachine v4

    ut how i insert pictures to this slotmachine ? every time i open the slotmachine a picture error pops up !
  4. SharkbiteZero

    Adding vehicles to Traders

    is there a way to add ne categorys to the trader like "Cars", "Trucks", "blabla", "blub" ? i try it but my server want start up ! class Exile_Trader_Vehicle { name = "VEHICLE"; showWeaponFilter = 0; categories[] = { "Cars", "Trucks", "NEW1", "NEW2" }; }; can someone help me or is it not possible ?
  5. SharkbiteZero

    a3_vemf_reloaded by IT07

    ok i fixed my proplem i think my brain was out of order i forget to insert the VEMFr_client folder in my Exile.Altis folder. thx for your help guys !
  6. SharkbiteZero

    a3_vemf_reloaded by IT07

    Hey folks i hope someone can help me. The VEMF System runs fine on my Server, but i cant figure it out how to get the Announcements from the raid ect. on the bottom middle of my screen. If i need some other stuff or so plz let it me know. Thx for your help guys.
  7. SharkbiteZero

    AI Missionen

    Das habe ich mich auch schon gefragt ! Nun habe ich dieses A3_Exile_VEMF_Reloaded-master bei mir drauf und es kommt nur eine Meldung im Chat. Dieses Popup unten in der Mitte ja keine Ahnung wie man das Aktiviert. Also diesen Broadcast, wenn mir das jemand weiterhelfen könnte wäre das super. Danke schonmal im vorraus.
  8. SharkbiteZero

    Custom Crafting - Tutorial

    Hi i found your Thread and i like it but if i wanna add a cooking pot or some other recipe i cant craft any of my stuff ! no bandage, no Beer, backpack ect. I can only add your stuff and it works without problems. I will show you my cooking pot stuff so hopefully someone can help me with this problem ! class Exile_Item_CookingPot: Exile_AbstractCraftingRecipe { name = "Craft Cooking Pot"; pictureItem = "Exile_Item_CookingPot"; returnedItems[] = { {1, "Exile_Item_CookingPot"} }; tools[] = { {1, "Exile_Item_Pliers"} }; components[] = { {4, "Exile_Item_Can_Empty"} }; }; Bandage , Visphirin and InstaDoc works perfect but my recipes wont work. if someone find the problem it will nice to know. Thx for your help guys and sorry for my bad english. -.- This is a short line out of my Code ! class CraftBandage: Exile_AbstractCraftingRecipe { name = "Craft Bandage"; pictureItem = "Exile_Item_Bandage"; returnedItems[] = { {1, "Exile_Item_Bandage"} }; components[] = { {2, "Exile_Item_ToiletPaper"} }; }; class CraftVishpirin: Exile_AbstractCraftingRecipe { name = "Craft Vishpirin"; pictureItem = "Exile_Item_Vishpirin"; returnedItems[] = { {1, "Exile_Item_Vishpirin"} }; components[] = { {3, "Exile_Item_Bandage"} }; }; class CraftInstaDoc: Exile_AbstractCraftingRecipe { name = "Craft InstaDoc"; pictureItem = "Exile_Item_InstaDoc"; requiresFire = 1; requiredInteractionModelGroup = "WorkBench"; returnedItems[] = { {1, "Exile_Item_InstaDoc"} }; components[] = { {4, "Exile_Item_Vishpirin"} }; }; /* class Exile_Item_CookingPot: Exile_AbstractCraftingRecipe { name = "Craft Cooking Pot"; pictureItem = "Exile_Item_CookingPot"; returnedItems[] = { {1, "Exile_Item_CookingPot"} }; tools[] = { {1, "Exile_Item_Pliers"} }; components[] = { {4, "Exile_Item_Can_Empty"} }; }; */ the /* and */ just to mark my problem Bandage , Visphirin and InstaDoc works perfect but my recipes wont work. if someone find the problem it will nice to know. Thx for your help guys and sorry for my bad english. -.-