Jump to content

arcada

Members
  • Posts

    13
  • Joined

  • Last visited

Recent Profile Visitors

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

arcada's Achievements

Drops

Drops (2/15)

  • One Month Later
  • Collaborator
  • Week One Done
  • Dedicated
  • Conversation Starter

Recent Badges

0

Reputation

  1. i gave up sometime ago trying making this thing to run... its almost impossible now. documentation is very hard to follow, guides are broken and the old tools for compiling wont work. serves to nothing the tutorial above.
  2. this is the same situation we are experiencing today
  3. I did a stupid misconfiguration, to activate pet loot its just about adding SupportScript: > petloot 10;
  4. same issue, my pet is not looting at all. i tested it and its loyal and battle everything ok but never loot anything.
  5. sudo apt-get install php-mysql dont forget to install it This is for msqli php7 dudes like myself function PlayerCount() { Global $Srv_Host, $Srv_Username,$Srv_Password,$Srv_Database; $mysqli = new mysqli($Srv_Host, $Srv_Username, $Srv_Password, $Srv_Database); if ($mysqli -> connect_errno) { echo "Failed to connect to MySQL: " . $mysqli -> connect_error; exit(); } $count = 0; if ($result = $mysqli -> query("SELECT COUNT(*) as total FROM `char` WHERE online = '1'")) { $request_list_row = $result->fetch_row(); echo ' ',$request_list_row[0]; // Free result set $result -> free_result(); } else { echo 0; } $mysqli -> close(); }
  6. sometimes, in my case if you are in a virtual machine using a shared folder you will need more magic to make it happen. but, this isnt a fluxcp issue its because shared folders in VM are kind of protected.
  7. The link in rate my server is blocked by chrome due to viruses warning, anyone know another version that is safe? I have no idea WHY a sprite editor should have such nasty things but can happen and we shouldn't tolerate these garbage.
  8. Nemo will generate a file in the same folder with the MD5 information but you can use windows command like that certutil -hashfile 2015-11-04aRagexe_patched_obs.exe MD5 to do that for you!
  9. i know this is a very very old stuff but I wanted to add that if you dont put the exposed IP in the configuration client wont connect. I had to do that here (instead of 127.0.01 put the IP your host can finally access to your guest) char_athena.conf // Character Server IP // The IP address which clients will use to connect. // Set this to what your server's public IP address is. char_ip: <Virtual machine IP>
×
×
  • Create New...