Jump to content

musica2

Members
  • Posts

    12
  • Joined

  • Last visited

Posts posted by musica2

  1. 3 hours ago, Vykimo said:

    yes and it's quite easy to code if you've PHP skills. If not, please consider using FluxCP instead...

    Example of simple status server check :

    
    /* Usage: 
    $status =  GetServerStatus('http://domain.com',80)
    or
    $status =  GetServerStatus('IPAddress',80)
    */
    
    <?php
    function GetServerStatus($site, $port)
    {
    $status = array("OFFLINE", "ONLINE");
    $fp = @fsockopen($site, $port, $errno, $errstr, 2);
    if (!$fp) {
        return $status&#91;0&#93;;
    } else 
      { return $status&#91;1&#93;;}
    }
    ?>

     

    yep i think so, and how about the registration form? 

  2. Hello, it is possible to connect custom made php website with registration/server status/etc codes without using fluxcp to SQL database?

    if it does possible, how can i make it works without using flux cp?

    can any1 give me some guides?

    thx

  3. 8 hours ago, GMxMomi said:

    Which file u edit for change rathena packetver?

    in src/config/packets.hpp u may use this script:-

    #ifndef PACKETVER
        /// Do NOT edit this line! To set your client version, please do this instead:
        /// In Windows: Add this line in your src\custom\defines_pre.hpp file: #define PACKETVER YYYYMMDD
        /// In Linux: The same as above or run the following command: ./configure --enable-packetver=YYYYMMDD
        #define PACKETVER 20180620
    #endif

     

    or u can use latest update from rathena git.

    packets.hpp

  4. On 10/13/2018 at 2:23 PM, MathReaper said:

    Everything ok with your sclientinfo.

    Make sure that you have only that sclientinfo in all your files (GRF/DATA FOLDER) and don't enable any other NEMO's patch if isn't recommended and make a test.

    thx for info, i already have found the solution for it. its server side issue, updated to latest rAthena packetver. now its working as charm

    screenAuroraRO007.jpg

  5. so in this 2018 ragexe..

    where the default sclientinfo path is? inside data/rdata.grf? or do we manually put it in and set a custom ip..?

    if i put sclientinfo inside data folder, shld i enable 'load custom clientinfo' anyway?

    ( i'm currently using 2015 ragexe and it worked out fine with 'read data folder' with custom ip inside clientinfo.xml) - with 'custom' grf

    eg below is currently still working

    [Data]
    0=custom.grf
    1=rdata.grf
    2=data.grf

    but..

    i cant get this 2018 ragexe working so far with preferable setting.

    Thx i think some1 could explain?

     

    btw i have this version working without any conflict

    but still i need a customable ip for a multi client/player purposes. and of course something has to be done with its ragexe setup.

×
×
  • Create New...