Search results

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Public Service Announcement

    Hey Guest, I’ve got some exciting news to share! 🎉

    Starting this December, I’ll be moving the entire GameServersHub website away from WordPress and rebuilding it in Next.js! This upgrade will bring incredibly faster speeds, smoother performance, and a modern user experience that sets the stage for everything coming next.

    In 2026, GameServersHub will be entering a new era. I’ll be revamping the entire platform from the ground up and launching a brand-new, fully modernized marketplace. It’ll feature a cleaner design, improved functionality, and better tools for both creators and server owners.

    On top of that, development has already started on the GameServerListing project at https://gsl-six.vercel.app/, which is expected to launch in early Q1 2026. This new system will make discovering and managing servers easier than ever before.


    👉 Stay in the loop!
    Join our Discord for behind-the-scenes updates, early previews, and community discussions.

    » Click here to join our Discord! «

    ~ MrOwlSky

  1. Michidu

    How do I submit a modified plugin?

    You need to do it in resources.
  2. Michidu

    ArkHomes [Deleted]

    Michidu updated ArkHomes with a new update entry: 1.1 Read the rest of this update entry...
  3. Michidu

    Extended RCON

    Michidu updated Extended RCON with a new update entry: 2.7 Read the rest of this update entry...
  4. Michidu

    How do I submit a modified plugin?

    You can upload it as a separate plugin then if you want.
  5. Michidu

    Including 3rd party libraries

    Great, it was solved then i guess.
  6. Michidu

    Including 3rd party libraries

    You can use other libraries. But it looks like you forgot to include some dependencies in your server.
  7. Michidu

    How do I submit a modified plugin?

    If you don't want to publish it as an another plugin, can you create a pull request on GitHub?
  8. Michidu

    How can I get player's level when player is riding a dinosaur?

    You need to get a rider from the dino. dino->RiderField().
  9. Michidu

    taking away dinos structure damage ability

    It's similar but you need a different hook, APrimalDinoCharacter::TakeDamage.
  10. Michidu

    Private plugins ? Can`t do them because under contract? LoL

    I have already answered why it was removed in the other topic. It, obviously, wasn't done to make plugins creation harder. While a good tutorial/documentation (which is pretty hard to create) would help, it's not the main problem. Yes, there are not many people in the ARK community who know C++...
  11. Michidu

    [Official] Ark: Survival Evolved - ArkShop

    I can't say you an exact time, but hopefully, it will come out within the next 2 weeks.
  12. Michidu

    (POTENTIAL) ♥ GUIDE - CREATE PLUGINS ♥ (POTENTIAL)

    Well, i wrote this guide for the first API version. The reason why it was removed is because it's outdated. However, it's not really a guide but just overview of a few API functions. Now, those functions have a small documentation directly in the code, so it's almost useless.
  13. Michidu

    [Official] Ark: Survival Evolved - ArkShop

    At the moment, if item doesn't support stacking, there is no way to force it. However, it's something that should be added in the next version. There is a better way than just 'cut' entered amount. Not sure what you mean with blank message. Random level can be added. Engram points recalculating...
  14. Michidu

    permissions dll

    Probably, yes. If you are not using a dedicated server.
  15. Michidu

    Web API

    You are right, there is no way to edit Content-Type as of now. I will fix it. For the player login/logout, hook "AShooterGameMode_HandleNewPlayer" and "AShooterGameMode_Logout".
  16. Michidu

    Web API

    That's how you can make a request: void RequestCallback(TSharedRef<IHttpRequest> request, bool success) { // } void main() { FString url = "url"; FString verb = "GET"; const bool result = ArkApi::Requests::Get().CreateRequest(url, verb, &RequestCallback); }
  17. Michidu

    Modified spawn level distribution compatibility

    That could be because you are creating a copy of the array. Try to change that line to TArray<FDinoBaseLevelWeightEntry>& baseLevelWeightEntries = _APrimalDinoCharacter->DinoBaseLevelWeightEntriesField();.
  18. Michidu

    AutomaticPluginReloading

    You need to name the plugin like so "name.dll.ArkApi" for 'AutomaticPluginReloading' option.
  19. Michidu

    [Loading Library -> C#]

    The API uses C++ not because it's 'better', but because it was the easiest way to start with, since Ark uses C++ too. Having a wrapper would be nice, of course, but creating it requires a lot of effort and time, moreover, the wrapper would require regular updates too. Documentation is planned...
Back
Top