Jump to content

Hadeszeus

Members
  • Content Count

    651
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Hadeszeus


  1. Hello, I'm running on the same issue but different plugin (marketclone). at first I tried using make plugin.marketclone but it won't let me run it. So I decided to use make plugins and

     

    and did something like this:
    image.png.84c9021c2a58a1dc477c1818ae9d246c.png

     

     

    I also added the plugin in conf/plugins.conf

    image.png.0e04881fbc84b3a58a655ca0f9213a4a.png

     

    run make clean > make plugins > make sql
    no error at all but when I start the server I got this same issue.

    image.thumb.png.a70f6599b4d0c96d1b4157b8ef52baa8.png

     

    Thanks for your reply. 

     


  2. 2 hours ago, Kuya Jeo said:

    trunk/src/common/mmo.h

    #define MAX_LEVEL 175

    
    #define MAX_LEVEL 175

    change into

    #define MAX_LEVEL 255

    
    #define MAX_LEVEL 255

     

    Next is trunk/conf/map/battle/player.conf

    this will make 255 stats

    // Max limit of char stats. (AGI, STR, etc.) max_parameter: 99

    
    // Max limit of char stats. (AGI, STR, etc.)
    max_parameter: 99

    change into

    // Max limit of char stats. (AGI, STR, etc.) max_parameter: 255

    
    // Max limit of char stats. (AGI, STR, etc.)
    max_parameter: 255

     

    Next is trunk/conf/map/battle/client.conf

    max_lv: 99

    
    max_lv: 99

     

    change it to (same with the aura_lv if you want 255 player have a blue aura)

    max_lv: 255

    
    max_lv: 255

     

    next step is trunk/db/pre-re/job_db.conf

    you can use this one, not yet tested but give it a try

    Link : https://pastebin.com/QaB3Y3Tv

     

    Done forget to recompile your server after..

    Thanks Kuys! Already fixed it. I edited the original file without knowing it's overwriting the value in IMPORT data. :)


  3. Hello, anyone here that can help me setup client side and check my server side setup?
    I can definitely learn it by myself since I was able to have my own server around 2013-14.
    I just can't afford to waste more time to remember or learn it all again.
    I definitely have an idea with everything I just forgot exactly what to do.

     

    So right now I was able to successfully set up the server-side on Linux Debian 9. But no luck on client-side setup. So if anyone willing to help me I can pay $10 per hour.

     


  4. On 9/8/2020 at 11:48 PM, evilpuncker said:

    what is a fault? I just downloaded it with no error (using method 1)

    MA9Bxrw.png

    Having the same issue. I spent most of my day finding the solution :D
    It's either Nemo doesn't support 2020 client or I just don't know how to use it LOL...

     

    Learning again is fun.


    image.thumb.png.cc3cf17971f0f8f3af07c14f03c311f0.png
     


  5. Hello Herc.ws, it's been awhile since the last time I tried creating my own server. Looks like the project still ON but the herc community is not active than before. 
    Glad AnnieRuu is the first person I saw when I revisit the site a few weeks ago till today. :D

    So after 6 yrs I'm planning to refresh everything and might think of opening a server since I am more capable and stable now.

    I'm currently playing on one of the popular RO today and can't keep myself from noticing how cool the client is. So back to the question can I setup new RO on stable version like this client?

    Thanks in advanced,

     

    image.png.dfd8f933b3a32772ca8536e02d5c4c72.png


  6. Yes it is possible. Pero one thing for sure no one will help you about this :( you need to find a paid developer to do this. 


  7. Cheez, I feel sorry for you bro. Better to find someone or a friend na taga PH din, and then collaborate, atleast may matututunan ka dun, pwede pa kayo mag tulungan :)


  8.  

    @@Hadeszeus nothing happens :(

    <IfModule mod_rewrite.c>    RewriteEngine On    RewriteBase /cp    #Removes access to the system folder by users.    #Additionally this will allow you to create a System.php controller,    #previously this would not have been possible.    #'system' can be replaced if you have renamed your system folder.    RewriteCond %{REQUEST_URI} ^system.*    RewriteRule ^(.*)$ /index.php?/$1 [L]        #When your application folder isn't in the system folder    #This snippet prevents user access to the application folder    #Submitted by: Fabdrol    #Rename 'application' to your applications folder name.    RewriteCond %{REQUEST_URI} ^application.*    RewriteRule ^(.*)$ /index.php?/$1 [L]    #Checks to see if the user is attempting to access a valid file,    #such as an image or css document, if this isn't true it sends the    #request to index.php    RewriteCond %{REQUEST_FILENAME} !-f    RewriteCond %{REQUEST_FILENAME} !-d    RewriteRule ^(.*)$ index.php?/$1 [L]</IfModule> 

     

     

    Try removing this: :8080

     

    Change:

    'base_url' => 'http://localhost:8080/cp/',

     

    To:

    'base_url' => 'http://localhost/cp/',

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.