Tich

Member
  • Content count

    60
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Tich

  1. @SpodGamesTV It's not just that, if you use CUP at all, you cannot monetize the same with RHS. Just so you are aware and don't go to all the trouble. This is because every mod you use, the owners must be onboard.
  2. Tich

    Looking for a Exile Mod | Dev

    Your discord does not work. You can add me as Tich#5712 if you like.
  3. I have been digging through the exile extended items config to see how this system works. I would REALLY like to use this system. It seems to be done through pure config. So is it a built in system? What is it? If you go to a loot pile and that pile has a weapon you need or part that is import it will say "Take X" like "Take M4A1" or "Take Cayote Backpack". It's really cool, if anyone has any information please help, otherwise I'm going to look into building a script side system for this.
  4. Tich

    HOW? "Take Items" in Exile Extended Items

    Yeah that was my question. As in where to find it, and is it original functionality. I can't. I know it is a clientside mod as is Exile extended items...
  5. Tich

    is there a way to Change xm8 skin

    You can, just off the top of my had, make a script that detects when the xm8 display is active, then get the display idd and set the background one ctrlsettext="new/xm8.paa"; If you want I cant try test this out soon, just busy.
  6. Xstreme Gaming is looking for staff and developers. Please send me your applications and I will reply very quickly. It has been just me for the last year developing and its been a huge job. We have a lot on the horizon and I would love to get things going faster. We have the possibility of opening more servers in more places and a great community. I'm a computer hardware engineer and have a lot of experience with a lot of areas. If you are interested please apply. We would love to have you. Please don't apply if you are not mature, or don't think you will hang around long. PM me here or email me at: [email protected] Discord: discord.xstremegaming.com Website: xstremegaming.com
  7. Maybe you guys can help me. These are found both on server and client.
  8. Tich

    What is causing these threads? (Listed)

    Solved: The rogue threads are caused by Wreck_Heli_Attack_01 objects being made by DMS or something else like heli crash sites. Simply placing the object creates threads. Removing them stopped it.
  9. Clearly late to this. Bottom line is. If you are going to steal content without permission, don't try to defend your actions like you are just. You are a wrong. I care about the time I put into my work. I release some of it to give back. I respect people who want to keep some of their work. Whether that is through the editor or a script. It's not only the law on bohemia and most places, it is being a good human. If you are going to steal, just do it but i'm not going to let you belittle my work because it's done with a tool (as is most work). and if you steal it without permission, damn right BI and a DMCA will be coming. It's not just damaging to running a server and the community, it's just disrespectful for someones time and work, because you are too lazy to learn yourself or ask to use. Why create scripts if kids will rip them off with no credit and treat them as their own. Speil over. I think respect is important.
  10. Then you did not add it to the right area or correctly. Open your logs and check the log that shows idd's that were blocked. It should tell you what has been having the issue.
  11. Tich

    Custom Mission.pbo from scratch.

    Totally mate. Exile 3Den offers this. All you have to do is edit the Initplayerlocal.sqf remove the current traders. Then make them in the editor and export them with exile 3den. One is the Initserver which is the layout, the second is the initplayerlocal which is the traders, their animations and loadouts.
  12. Tich

    Custom Mission.pbo from scratch.

    Do you mind if I ask why? I have made a few from scratch and it's easy if you know what you are doing, but a nightmare without. You will still need some base things no matter what, like the description.ext. The best thing is to get the base one and edit it to your hearts content. You need and Init, the Exile description.ext and 100% a mission.sqm. Not to discourage you in anyway but the fact you don't know might mean you miss a ton in the process of making a new one. Causing a few mere migraines. Customizing a current one will still be exactly yours. You can change every trader, position, mod, plugin, overwrite. Cheers.
  13. You're going to need to give a list of modifications to your database and overwrites. It looks like there might be an extra array there.
  14. Tich

    Mullens-Servers | Exile

    Never used this. Maybe I should have put this as a comment. Joined our server. Added everybody on steam and proceed to try get them all to join his server. Then advertise in game. Disrespectful to owners and content creators which I'm sure who's scripts he uses. Banned. I would change the way you operate.
  15. Tich

    Mullens-Servers | Exile

    Joined my server, added everyone on steam PM'ed them to join his server and then advertised in game. Not a great start and disrespectful to the owners of the established servers and contributors to exile, who's scripts i'm sure you use. Consider yourself banned. I hope you change the way you choose to operate.
  16. I told you. So to change these in the editor. Select the item and enable/disable damage and enable/disable simulation.
  17. I find it hard to follow this question. If it is simply what each file does, it is available off the wiki. In exile "generally". Init is used for any code on both client and server. Initplayerlocal is used for traders and spawned locally Initserver is used for objects and created once serverside and synced across the server. mission.sqm is a map creation and you can put any objects or map markers here, like trader markers if you like. (But again you could do it by script if you like in another file.) None of this HAS to be done in these files. It can all be done in Init as it is run both on the server and client. Generally most code is also started with something like "if(isServer)" to make sure it is run on the correct machine too. To understand this a bit better you should research client and server execution, ownership and how they are synced between the two.
  18. You do not have to refactor old code. If you generate it, you can use a different code to implement it. So if it only contains a single true, use this: [ ["Land_PortableLight_double_F", [4780.18, 2438.74, 11.5177], [0.985094, 0.157464, 0.0692507], [-0.0536288, -0.101384, 0.993401], true], ["Land_PortableLight_double_F", [4788.88, 2449.71, 11.1668], [-0.984217, -0.176966, 0], [0, 0, 1], true] ] { private _vehicle = (_x select 0) createVehicle (_x select 1); _vehicle allowDamage false; _vehicle setPosWorld (_x select 1); _vehicle setVectorDirAndUp [_x select 2, _x select 3]; _vehicle enableSimulationGlobal false; _vehicle enableDynamicSimulation (_x select 4); } forEach _vehicles; (Note, this is for dynamic simulation if you use that. ) What is the difference? Depends on the code. true = Just enables dynamic simulation alone or in some cases global simulation. true, true (the double case) = Enables Dynamic/Global simulation and the second true enables Damage usually. So there is no difference, it appears that you do not know much of what general code does and I would suggest you take the time to learn this first. All the exporter does is export the coordinates and options. Then the last bit of code loops through every object and sets the parameters of each object and spawns it in the world. In this case the difference is whether damage is enabled. You can easily figure this out yourself if you take a look at the last bit of code and which part of the array the code selects. Some other notes: Spaces before values don't matter so there is no need to state it again. The extra set of squarebrackets around rotation (turning) is just for organisation. Cheers mate, let me know if I need to clarify anything.
  19. Tich

    Pay to set up my server

    @ProPsychoMan PM'ed you
  20. Tich

    Needing mods installed

    pm'ed you.
  21. What are your guys tactics, script or rules to controlling large groups both for new players and smaller groups. I hope this is the right place to post this. Cheers
  22. This is the exact definition of working over copyright.. Jesus. It wasn't just a fix it was a rework with his own and redistribution. Clearly you have no idea how git works too. You request a fork, put in the fix and request a merge. It's not just a place to paste your recycle code.. This way it stays under the original authors work. Don't try and change my mind on copyright because you won't. You'd be the type of person to cry if your content was stolen. It has been provided for free the least you can do is respect the owner and ask permission if you want to upload it on your own git. Not abuse it and reuse it. I'm not going to reply to anymore of the silly emotional comments. Don't make anyone feel bad about simply protecting someones work. Copyright is plain and simple, and asking the owner is no large deed. Especially for the work they have put in. Show some respect for the content you use. No I'm not the author but yes I do run xstreme and I do write my own code for many projects.
  23. This isn't about using it or not using it? It's about someones copyright and whether you have permission for it. I'm really surprised you don't understand that.
  24. Have you checked that you are allowed to modify and redistribute this?