Jump to content

maihym

Member
  • Content Count

    104
  • Joined

  • Last visited

  • Medals

Everything posted by maihym

  1. xD it's been a while since I've worked with Arma 3 but it's nice to know that I've still got it
  2. All you would need to do is obtain it's velocity or speed and once it has come either to a stop or slows down to a certain point then you can have it be deleted. This is why I mentioned having the object.
  3. I wouldn't see why it's not possible as long as you can get the actual projectile object, you would just need to compare its position to your targets position.
  4. Try my code in your original post format. "myCatergory" is the folder and "myFunction" is the filename. If a file is named "fn_myFunction.sqf" then arma will know to make that file a function. Paste my code into your config.cpp file and it should work.
  5. Try this just replace "modFolderName" with the name of the folder your mod is in. To call the function you would use [] call fnc_myFunction; if calling from another file or SQF but the preInit will launch the script when the mod gets loaded in. class CfgPatches{ class SinglePlayerCharacterSwitcher{ author = "CaptainDucko"; version = 1.0; units[]={}; weapons[]={}; requiredAddons[]={}; requiredVersion = 0.1; }; }; class CfgFunctions { class myCategory { file = "modFolderName\myCategory"; class myFunction{ preInit = 1; }; }; };
  6. https://community.bistudio.com/wiki/Arma_3_Functions_Library#Attributes
  7. Hi I may be able to help, add me on discord Maihym#0001
  8. How can I shut down a server through an executed SQF script? I'm currently using InfiStar as well and I noticed that it calls for passwordAdmin but when I try calling for it Arma says it's an undefined variable. But when I go in the debug console and have it hint passwordAdmin is shows the password. Can someone help me get my server to shutdown via script.
  9. What about items in backpacks or vests?
  10. What are you talking about with the user ids? Player uids are unique to each player and would be an easy way to track the user. If you're talking about something like a global stats tracking app then you would need access to server's databases and have them log the data for you. Then you would need access to their database. If you're talking about your own server then this is the same except for just your server.
  11. Well like I was saying, I'm just going to get a return though a mysql database. I'll send a command to a php file, then it'll send its output to a php file and then I'll have a delay set in the script so then it'll check for a return after the delay which should now be in there.
  12. Well what I was going to do it make a sort of raw Rcon input from arma 3 and have it send rcons via loadhtml and get a return. What I think I'll do instead is do the same thing but in the php file send the return to a database table and just pull that through arma.
  13. What kind of return do you get with this? Do you get the text of the page you visit?
  14. Has anyone done any playing around with the new license plate commands? If so, how do they work and when will those commands be put into the game?
  15. I would make this myself if I knew how but I simply don't know anything about C# or C++. I'm looking for a windows & linux compatible addon that will allow you to execute rcon commands via in-game scripting. I'm looking for something to essentially bridge the two and allow a send and return of commands.
  16. I'm looking for someone to make textures for my server or textures to be released publicly I don't mind. I'm more of looking for someone to be a texture developer for my server but if you're just looking to help out then that's fine too. But if you have any questions feel free to connect to my teamspeak @ chaoticgaming.net
  17. Very very cool system, I really like it.
  18. So my goal is to make a simple addon that will allow you to send rcon commands via the server and get a return. I know nothing about making DLLs or .so files and would like some help. Can anyone recommend a place where I start, like an example I could look at. I feel I learn best through examples and edits first.
  19. maihym

    Making an addon

    Which is an easier language to understand in your opinion?
  20. maihym

    Making an addon

    I would like to use player list, ban and kick. As of right now though. I'm sure I could find uses for other commands but not at the moment. Why do you ask? I'm not sure if I want to use C# as I said I am a novice at C# and C++. At this point I just want to use the simplest language as possible. I would prefer to use libraries that are compatible with Windows and Linux though.
  21. maihym

    Making an addon

    I'd say I'm fairly experienced when it comes to programming in Arma but I'm a novice when it comes to programming in c# or c++. I'm just trying to make the addon itself as simplistic as possible and only have it be the gateway. I want to just process everything through Arma because that's what I know. So essentially I was thinking of making it so the login details are hard coded into the addon and then using call extensions to just run raw rcon commands and receive raw rcon output. But I need to do this for a dll addon and a so addon because I run a Linux server. Two words that provided no help whatsoever.
  22. How can I change colorBar from another script?
  23. maihym

    Changing colorBar?

    Dude I honestly have no idea what the fuck I was talking about 2 years ago xD. I'm assuming I was trying to change the Altis life health bar colors and shit like that but I really don't know. Why do you ask?
  24. Well I wanted to try to make extDB2 with 64 bit support. I'm trying to use it for remote rcon via in game. But do you by any chance have a backup of the extDB2 documentation/wiki? If so, could I take a look at it?
  25. Are there any tutorials or guidelines when it comes to compiling and building this from the source?
×