Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by KristiansJ

  1. KristiansJ

    [Development] Origin - Mu Online Website Engine

    To configure website you must edit .env file located in main directory. I'm basing this project on MuEMU Season 12 database. EDIT: before running composer update column, open composer.json file and remove this line: after that open config/app.php file and remove
  2. KristiansJ

    [Development] Origin - Mu Online Website Engine

    1. PHP PDO SQL Server v5.6 extension officially supports Microsoft SQL Server from 2008 till 2017. You must be registered for see element. 2. Laravel has sql injection protection built-in You must be registered for see element.
  3. KristiansJ

    [Development] Origin - Mu Online Website Engine

    You must be registered for see element. What is Origin? Origin is mu online website created using PHP 7.3 / Laravel 5.8 / jQuery / Boostrap 4. Website is created using Laravel project standarts like using built-in translations, blade templates, validations, request validations, etc...
  4. KristiansJ

    [ HELP ] Laravel 5.8 - MS SQL Server - Invalid sql_display_size

    Hello, i have connected to Microsoft sql server 2017 using php sql server PDO extension.... when try to select varbinary() data type over 3999 length i get this error: Invalid sql_display_size If varbinary length is 3999 or less everything is fine. Currently column is defined as varbinary(7584)...
  5. KristiansJ

    [Help] Database structure MEMB_INFO

    Hello i'm using IGCN - MuEMU S12 database ( You must be registered for see element. ) I have questions about database columns and their possible values. protected $fillable = [ 'memb___id', // Account name - varchar(10) - NOT NULL 'memb__pwd', //...
  6. KristiansJ

    Movie Scrapper website

    Hello, i would like to ask if anyone is interested in creating movie scrapper website, where you could potentially watch movies online without annoying pop-ups. How does it work: - I use imdb to get all information about movie, currently i have implemented to search movies by imdb id only - I...
  7. KristiansJ

    Input Validation - Average to Expert

    i was working for something similar, not perfect, but still <?php/* */ declare(strict_types = 1); namespace System\Components { use System\Exceptions\CompileException; use System\Kernel\Container; /** * Class Validator * * @package System\Components */...
  8. KristiansJ

    [Text] Judge these lyrics?

    I did some edits to your lyrics(i'm not a rapper, lyricist or whatever, i just though it would be fun lol :D)
  9. KristiansJ

    [PHP] Level reset script

    oh god, why?
  10. KristiansJ

    [PHP] ConfigurationReader class

    Configuration file layouts <?php return array( 'Router' => [ 'Name' => 'Router' ] ); <?php $config = array( 'Router' => 'Name' ); Usage Example class Application { use ConfigurationReader; /* * Manually...
  11. KristiansJ

    [HELP] PHP Array search function

    Hello i got a problem, i have created costum array search function function array_find($find,array $array,$return = ARRAY_FIND_RETURN_BOOL) { $result = false; foreach($array as $index => $value) { if(is_array($value) == true) { $result =...
  12. KristiansJ

    Background Script

    you should take a look at cron jobs...
  13. KristiansJ

    Coded

    it's possible to define as variable variables as $$n = true; You must be registered for see element.
  14. KristiansJ

    Coded

    how about actually learning the language, instead hacking some codes? This is why PHP is considered bad language, and we encourage this... it may seem as really easy to start things off in php, but actually it's not!
  15. KristiansJ

    How to code a licence check in C# Console apps

    You could better send somekind of id code(ex HWID) to server, then check if it extists at server side, it it does then send back part of the encryption code( check for byte sequences for validation) as part of the response, then ask for user PIN(ex 1111) witch is registered at server side and...
Back
Top