Mabinogi (マビノギ)G13S1 test02 Server Files

Page 9 of 17 FirstFirst 1234567891011121314151617 LastLast
Results 121 to 135 of 252
  1. #121
    Apprentice Lost Moon is offline
    MemberRank
    Jan 2017 Join Date
    8Posts

    angry Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    First of all, thank you.

    thank you.
    hacker removed my face(face pocketid = 3)
    then character xml data is not have pocket3 data,can't to login channel(black robe)

    i can add the pocket 3 face data



    ok ^ ^




    Last edited by Lost Moon; 27-01-17 at 03:31 AM.

  2. #122
    Apprentice .dragon is offline
    MemberRank
    Jun 2008 Join Date
    13Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Quote Originally Posted by Lost Moon View Post
    hacker removed my face
    Welcome to G13, it's very Pake friendly :D Shouldn't the AntiHack prevent the most common exploits?

  3. #123
    Proficient Member Flipend0 is offline
    MemberRank
    Dec 2016 Join Date
    174Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Quote Originally Posted by .dragon View Post
    Welcome to G13, it's very Pake friendly :D Shouldn't the AntiHack prevent the most common exploits?
    It should. I think it does more than a packet blocker when i was comparing the files, but then again who knows what got patched and what didnt

    These files are a reverse enginners wet dream.

  4. #124
    Apprentice kohu is offline
    MemberRank
    Dec 2016 Join Date
    15Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files



    Got name check patched up for the most part while running in the hybrid mode. Only snag with it right now is I have a hard coded connection to the database as I haven't figured out how to extract it from the config files yet. I might add a custom written part of the config for it like the hybrid mode flags since it is a temporary fix until the character info is completely in the database.

  5. #125
    Novice Playtime is offline
    MemberRank
    Jan 2017 Join Date
    1Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Quote Originally Posted by parfait View Post
    Thanks for taking the time to help me out you two. So now all my ports are forwarded, turned the server machine into a DMZ. I'm still getting this Korean error after I click Start to enter the game. Everything works fine with localhost though.

    So that error translates to "Failed to join world. Please try again later.", however my exact wording may be off, I used image translation on my phone...

    ANYHOW!

    In some rare cases, such as those who use ASUS branded routers (such as myself) have just... Awful router firmware. Just sheer assholery. Insert etc bad word here.

    In this situation, what's happening is no matter what you do, it will connect you to the default gateway instead of the external IP address for the server you're trying to host.
    Works fine in localhost, will not work on anything else.

    Here's how to fix it:
    Note: I'm using Hyper-V and Windows Server 2003 R2. This may vary depending on your setup.

    First, create 2 legacy network adaptors for the system. One bridged, one internal. As such:




    Set them both on the VM.



    Setup the internal adapter like so:


    Note that the "IP Address" will be your actual external IP. Mine is just random garbage numbers for an example.
    Last edited by Playtime; 21-01-17 at 11:03 PM.

  6. #126
    Apprentice kohu is offline
    MemberRank
    Dec 2016 Join Date
    15Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Quote Originally Posted by Playtime View Post
    In some rare cases, such as those who use ASUS branded routers (such as myself) have just... Awful router firmware. Just sheer assholery. Insert etc bad word here.
    I have a few different routers to play around with and was wondering why my n56u was refusing to cooperate. Thank you for sharing!!

  7. #127
    Apprentice kohu is offline
    MemberRank
    Dec 2016 Join Date
    15Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    New release!

    Here is my current work with the database. Currently the account and accountref directories are stored in the database. If you load up MSSQl2012 and import the database backups, you should be able to use my Hybrid DBXML and messenegr server config to run the server in a way that allows for use of the friends list and duplicate name checking.

    Please keep in mind this is all in development. You can find limited instructions in the readme. I may write up something better walking one through the process in more detail later.

    https://mega.nz/#!etoCBCKB!6dKH7CIsbfLDluc4taa2RwO-kRIVZOsg312lwDkfPY4

  8. #128
    Enthusiast sht547 is offline
    MemberRank
    Sep 2008 Join Date
    28Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Thank you

  9. #129
    Apprentice Lost Moon is offline
    MemberRank
    Jan 2017 Join Date
    8Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    tkx~~~~

  10. #130
    Proficient Member Flipend0 is offline
    MemberRank
    Dec 2016 Join Date
    174Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Tutorial #8: Make your own GM commands via mint scripting

    So now that we know that we can edit mint files. Using the pre-set codes already from mint operation scripts
    We can use these codes to create our own commands.

    The Mint Language is a pseudocode paraody of C. So if you know a bit of C Language, you can be very proficient

    The first thing we're going to do is head to this directory:

    Code:
    C:\RCCWork\GameServer_Ch1\data\script\

    From there we're going to make a new file. You can call this file any
    thing you want, just make sure it has the .mint extension. For this tutorial
    we're going to name our new file

    Code:
    GM.mint
    Open the file, and in this file you are going to copy this templete:

    Code:
    /////////////////
    server void yourcommandnamehere(character me)
    ////////////////
    
    {
    /* You can enter your commands here
    Your character is declared as "me", Use the object to create your own commands
    For example "me.AddSkill(20001, 15);" or "me.AddItem(64050);" 
    
    To activate this command, >mc domint(data/script/GM.mint::yourcommandnamehere) */
    
    me.AddSkill(20001,15); //Ranks up Defense to Rank 1
    me.AddItem(64050); //Get a Diamond Gem
    
    }

    When you're done adding your own name and commands, you can save the file and restart the server
    Once you're able to log into the game. Type in this command to see your work

    Code:
    >mc domint(data/script/GM.mint::yourcommandnamehere)
    There are so much things you can do with with script, just have to get creative with the coding behind it
    Explore around the mint files and see what you can do to create your own commands

    We haven't been dead or got bored. We've been discovering a lot on our dev chat and we would love for you to join and contribute, or hopping in is fine too!

  11. #131
    Apprentice Mark Metzger is offline
    MemberRank
    Nov 2015 Join Date
    18Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Oh i forgot to mention that i Found the Data for G17

  12. #132
    Proficient Member Flipend0 is offline
    MemberRank
    Dec 2016 Join Date
    174Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Quote Originally Posted by Mark Metzger View Post
    Oh i forgot to mention that i Found the Data for G17
    Yeah, it's on EPVP. Not a surprise
    You can't do much other than translation, which 幻世Mabinogi has already done

  13. #133
    Novice ncbz is offline
    MemberRank
    Feb 2017 Join Date
    3Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    SYS> NPC Client Initializing...SYS> NPC Client Initialized.SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!


    when i run the “NPCCH1”, it show these. how can i fix it
    Last edited by ncbz; 10-02-17 at 06:21 AM.

  14. #134
    Novice ncbz is offline
    MemberRank
    Feb 2017 Join Date
    3Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    Quote Originally Posted by ncbz View Post
    SYS> NPC Client Initializing...SYS> NPC Client Initialized.SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!SYS> Login Ready.SYS> Login failed!!!


    when i run the “NPCCH1”, it show these. how can i fix it
    i fixed it. The account of npc which i created was changed the password by me. if you changed, it must modify the file"C:\RCCWork\NPCClient_Ch1\NpcAccount.xml"

  15. #135
    Apprentice 66228324 is offline
    MemberRank
    Jan 2014 Join Date
    18Posts

    Re: [Release] Mabinogi (マビノギ)G13S1 test02 Server Files

    any hero korean language pack shear pls. '3'....



Advertisement