Kellojo

Member
  • Content count

    49
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Community Reputation

34 Good

4 Followers

About Kellojo

  • Rank
    Bambi

Recent Profile Visitors

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

  1. Kellojo

    ETG Fast Travel System

    Nice to hear you got it to work, at least in some way The Issue with the markers not showing up in the list on the right side is kind of well known and I really don't know why it occures. I have somewhat moved on from the Arma 3 times and am not active on here at all (Nice to see though, that there are still people out there working with the scripts). On the previous pages in the comments you may find the answer, @Pattoh has done some great work on updating/fixing the script.
  2. Kellojo

    ETG Fast Travel System

    @WURSTKETTE This could very well be the case, have you been able to test this out? Sadly, I don't have an exile server set up to test this on but thank you anyway for making us aware of this issue.
  3. Kellojo

    ETG Fast Travel System

    @Nofame The pricing can be changed by tweaking these variables: //Modify these to change the price, travel time and the locations you can travel to _distPriceMult = 0.08; //(price = distance * _distPriceMult) _distTimeMultip = 10; //(time = distance * _distTimeMultip) "_distPriceMult" would be the price multiplier. It basically comes down to this formula: price = distance (from point a to b) * _distPriceMult If you would like to do something else you could modify these lines here: @DirtyDirt / @Pattoh Do you mind if your version would be pushed to the GitHub repo, I have created a couple of days ago?
  4. Kellojo

    ETG Fast Travel System

    @Snakeyes1 This error occures when a class in this case the class RSCText is undefined. Make sure the defines.hpp includes this class (it should be in the dialogs folder)
  5. Kellojo

    ETG Fast Travel System

    Step 3: - First go to the Editor and place an object somewhere in your traderzone. - Then paste this code into the init of the object: this addAction ["Fast Travel System", {createDialog "ETG_FastTravelSystem_Dialog";}]; - Next have fun with the system All this code is doing is adding a scroll option to the object so you can open the fast travel dialog (menu). @Zeppo | Kickback.com This script should work for every map there is ! All you need to adjust are the markers mentioned in my main post.
  6. @shan_aya This "house" is created as a vehicle (createvehicle). You can call them object or whatever you want but if you want to delete a created vehicle then you should use this.
  7. @shan_aya I dont have this script installed but i guess you should try this: deleteVehicle _this select 0; Also you should make sure that _this select 0 is the "Land_Metal_Shed_F" and not the player.
  8. Kellojo

    ETG Fast Travel System

    Lol Really sorry I have uploaded the wrong files
  9. Kellojo

    ETG Fast Travel System

    ETG Fast Travel System byKellojo Description: This script allows you to travel between markers very fast with a nice camera journey. ETG Fast Travel System Youtube Video Features: dynamic price (based on distance) dynamic travel time (based on distance) a nice camera journey easy to implement (using markers) easy to modify (only one array) server friendly Installation: 1. Add to init.sqf: fn_ftravel = compile preprocessFile "scripts\fn_ftravel.sqf"; 2. Add to description.ext: #include "dialogs\defines.hpp" #include "dialogs\FastTravelDialog.hpp" class RscTitles { #include "dialogs\FastTravelHUD.hpp" }; 3. Add this code to an action or sth. else where you want the fasttravel dialog to be opend createDialog "ETG_FastTravelSystem_Dialog"; or add this action to any object you like... this addAction ["Fast Travel System", {createDialog "ETG_FastTravelSystem_Dialog";}]; 4. Install @happydayz's Update Respect/Poptabs and save to database addon (is required to remove the pop tabs) Update Respect/Poptabs and save to database How can i add new destinations?: How can i tweak the price and the travel time?: Notes: If you have any ideas or found some bugs/errors feel free to add me on Steam ( Kellojo ) and tell me about them. License/Disclaimer: You can use this script on your servers and missions and are allowed to modify it however you want. Its not necessary to give credit to me but it would be appreciated. Download: Link to the GitHub repository of the ETG Fast Travel System Link to the ETG Fast Travel System Screenshots:
  10. Kellojo

    ETG Helicrash and Drop Script

    @Masonest This is some kind of bug - i hope i can fix it soon...
  11. Kellojo

    ETG Helicrash and Drop Script

    @hawkie52 Is the box despawning because it is being damaged? @serveratze What is missing in v2.0 in your opinion? - I may add it... @Tuna No it is not, the drop and crash position is randomly selected
  12. Kellojo

    ETG Login Reward Script

    @KillingRe Thank you for the suggestions! The only problem is that i dont know how to get the actual date in a script (all i can get is the ingame one and that is not consisstent...) and there for I am not able to reset their tier, if they miss one day.. @JerryF Do you have a primairy weapon? The script only adds a magazine to your inventory if you have a primary weapon.
  13. Kellojo

    ETG Helicrash and Drop Script

    @Eggbox Thank you ! Im not quite sure what causes you problem... The script seems to run somewhat "instable" it seems...
  14. Kellojo

    ETG Login Reward Script

    @Andrew_S90 Thank you for your suggestion - Just updated the script to v1.2 and added a 5 min delay. @Tobias Solem Would be a good solution too - thx
  15. Kellojo

    ETG Login Reward Script

    Im currently trying to prevent this somehow but for now just do what @READTHESCROLL said