Jump to content

champ

Administrators
  • Content Count

    155
  • Joined

  • Last visited

  • Days Won

    31

Everything posted by champ

  1. A bit unclear whether this is two servers that can connect to the same instance or just a mix of two server files? also, your website controls cannot be accessed from mobile.
  2. Amazing release, thanks @Snre3n and @Mdrst!
  3. Непонятно собственно, что сама программа делает? Возможно не помешало бы краткое описание
  4. Please elaborate on what specifically is required, tech stack, frameworks, deadlines, etc.
  5. Hi. VPC is a virtual private cloud, you use it to define your networking components like subnets (public internet access and private respectively). With a free tier you can get a couple of burstable (t type instances) like t2.micro and others. It’s probably not enough to host a server. t type instances are also burstable, so when you have CPU spikes, you’ll first use CPU credits and if your instance is configured in “unlimited” mode, then you will pay extra money for it, so it’d be careful. You most likely won’t be able to achieve high performance by hosting SQL on these instances either. In terms of region, EC2 is a region-based service, which means you can switch region in your console and deploy it elsewhere that is within a close proximity geographically.
  6. Привет. Идея хорошая, мне нравится. Я предлагал уже что-то подобное Виктору, возможно можно будет сделать магазин, где будут отобраны товары, подтвержденные администрацией или что-то типа того. Я дал несколько идей Виктору, как можно развить форум с меньшими затратами. Ту тему пока что закрыл, как будут новости, сообщим!
  7. Hey @Blanquitoh, thank you. "Use at your own risk" referred to improper token configuration/ exposure. Code is clean.
  8. If I remember correctly you can modify velocity variable in CCharacterModel::PlayPose
  9. Whilst this works please keep in mind its very bad practise. The os.execute function call is blocking in nature, which means that it will halt the execution of game server until the command finishes. If a SQL query or command takes a long time to execute, it could cause noticeable delays. not to mention it is prone to sql injections and other security vulnerabilities (there’s enough already, so why add more )
  10. champ

    Hello

    There are a few websites written in django/ flask as far as I’m concerned but the majority are written in php. this comes with a shortage of web developers I suppose and the primary interest being around backend development within the game source code.
  11. champ

    Hello

    Nothing wrong with the PHP stack
  12. Publicly available top data: https://mega.nz/folder/OUMUgTYb#jtCsqh7halK_O9uzWyaG0g Misc -> farmer.rar
  13. Так баги будут везде, как вы это проверять будете? Наслово верить придется.
  14. Что значит «хорошая» сборка? Сэкономьте себе и другим время и уточните детали.
  15. Write this down in your main index.php to see if there are any errors: ini_set('display_errors', '1'); ini_set('display_startup_errors', '1'); error_reporting(E_ALL);
  16. Vectors website is safe to use. Xampp is fine for hosting as well. If choosing between nginx and xampp keep in mind management overhead and configuration complexity that comes with nginx. I think Perseus has also released a website based on laravel framework. If you upgrade the framework to the latest version, then this would be a very viable option too.
  17. champ

    Hello

    From a perspective of a well-formed agile team, where you have to pay each developer individually, the profit margin is minimal based on my experience. Although perhaps I have high expectations and/ or compare to profits you'd typically get by contracting (in that sense it *might* not be worth it).
  18. Hi, if you’re unsure how to compile and/ or have no experience with C#, then I suggest you use a different launcher. There’s plenty available on the forum
  19. You can, I’ve not done any Lua code in top in a while, but you can create an array of all your maps that you want to alow and then loop through it in your code.
  20. If you want to apply this to all map, then you can simply remove this condition. Additionally, unrelated to your question, you’re not checking if “QueryAsync” call was successful before showing BickerNotice, so basically if the call did not go through for whatever reason, the user will still see a message saying they’ve received the crystals.
  21. What makes you believe you're under DDoS? Firewall alone would be insufficient to mitigate the attack. DDoS attacks work by overwhelming target's resources - such as bandwidth, processing power, or concurrent connections. This can be difficult to manage with just a firewall, especially if the attack traffic volume exceeds the network's bandwidth capacity. DDoS attacks also tend to come from different IP addresses all at once with different user agents, so filtering the requests based on those might be inefficient. I would use CloudFlare or similar services that filter the requests and rate limit them before they actually reach your network! I'm only saying this so that you don't blindly pay someone to create a fix that will not achieve anything.
×
×
  • Create New...