Digimon rpg server files and more!

Page 2 of 5 FirstFirst 12345 LastLast
Results 16 to 30 of 63
  1. #16
    Apprentice alfarraptor is offline
    MemberRank
    Apr 2021 Join Date
    21Posts

    Re: Digimon rpg server files and more!

    Quote Originally Posted by biggestdreamer View Post
    @bruno3231 is the owner of an unfinished Digimon RPG server called Tamers Adventure Online, he already has this emulator source working so he didn't do anything new. Same for @Devll , he is the owner of another unfinished DRO server called DBRASIL, both DBRASIL and Tamers Adventure Online use this same emulator source. I don't know what the problem with the SQL file is but I'll look into it, maybe I shared the incorrect SQL.
    Yes bro.
    Your sql file is incomplete. For example, dont habe the item_codex table

  2. #17

    Re: Digimon rpg server files and more!

    Quote Originally Posted by alfarraptor View Post
    Yes bro.
    Your sql file is incomplete. For example, dont habe the item_codex table
    Just fixed the SQL link, now it downloads the correct SQL file.

    - - - Updated - - -

    Quote Originally Posted by revengineer View Post
    Very Cool Bruno! Biggest dreamer was just a dreamer, but you're actually making his dreams come true! Are you going to post the updated version (when you think you've done enough fixes that is), or at least the fixes to get it into a workable base state like this?

    I haven't ever played this game but from that last screenshot it looks like it might be fun. I'm currently gathering knowledge from server and client sources to build an original brand new IP! Modern iterations of these games are kind of overbloated and slow, I'm taking it back to basics back to the core of what made the games fun but also modernizing it in the ways that dont hurt the core gameplay. (Like uncapping variables to 64bit so there is no running into the hard limit of like 16bit or 32bit integer max values 64 is greatly increased and should be way enough. Making sure HD resolutions are present from the start, no 800x600 pain points and such, and using a highly performative language.)

    Whatever you decide is fine, but dreamer got you going by sourcing these likely long lost files so maybe giving back your fixes would be a nice way to say thanks, so he can dream no more and make it his reality. And of course the other few users interested in this browsing this thread :)
    The server emulator I shared already works out of the box, I just shared the incorrect SQL file. I already fixed this, now the SQL download link is correct.

  3. #18
    Apprentice alfarraptor is offline
    MemberRank
    Apr 2021 Join Date
    21Posts

    Re: Digimon rpg server files and more!

    Quote Originally Posted by biggestdreamer View Post
    Just fixed the SQL link, now it downloads the correct SQL file.

    - - - Updated - - -



    The server emulator I shared already works out of the box, I just shared the incorrect SQL file. I already fixed this, now the SQL download link is correct.
    Now server setup fine with new sql file.

    But client , i cannot connect. I have this error.


  4. #19
    Apprentice bruno3231 is offline
    MemberRank
    Feb 2022 Join Date
    12Posts

    Re: Digimon rpg server files and more!

    Quote Originally Posted by biggestdreamer View Post
    Just fixed the SQL link, now it downloads the correct SQL file.

    - - - Updated - - -



    The server emulator I shared already works out of the box, I just shared the incorrect SQL file. I already fixed this, now the SQL download link is correct.
    Thx for sharing fixed sql file.

    - - - Updated - - -

    Stuck again in loading character


    - - - Updated - - -

    Quote Originally Posted by bruno3231 View Post
    Thx for sharing fixed sql file.

    - - - Updated - - -

    Stuck again in loading character
    Found why, change autoridade to 100

    - - - Updated - - -

    Quote Originally Posted by alfarraptor View Post
    Now server setup fine with new sql file.

    But client , i cannot connect. I have this error.

    Windows Registry Editor Version 5.00
    [HKEY_CURRENT_USER\SOFTWARE\DIGITALIC\DigimonRPG]"Path"="Your Game Path"


    Save as .reg and execute will fix it

  5. #20
    Apprentice amatest is offline
    MemberRank
    Sep 2021 Join Date
    15Posts

    Re: Digimon rpg server files and more!

    Can you record and share the video for the server setup?

  6. #21
    Dark Cabal Games sasuke is online now
    MemberRank
    Oct 2007 Join Date
    In your houseLocation
    1,663Posts

    Re: Digimon rpg server files and more!

    Has anyone managed to make the website work?

  7. #22
    Apprentice alfarraptor is offline
    MemberRank
    Apr 2021 Join Date
    21Posts

    Re: Digimon rpg server files and more!

    @bruno3231 @biggestdreamer can you tell us what version of php use to make the website register work?
    thanks.
    I have the game open but i dont have account to log in xD

  8. #23
    Apprentice bruno3231 is offline
    MemberRank
    Feb 2022 Join Date
    12Posts

    Re: Digimon rpg server files and more!

    Quote Originally Posted by alfarraptor View Post
    @bruno3231 @biggestdreamer can you tell us what version of php use to make the website register work?
    thanks.
    I have the game open but i dont have account to log in xD
    Use xampp, here website configure with localhost and no password https://www.mediafire.com/file/65ro2...tdocs.rar/file

  9. #24
    Apprentice alfarraptor is offline
    MemberRank
    Apr 2021 Join Date
    21Posts

    Re: Digimon rpg server files and more!

    Ingame




    I think need fix some things.
    Visual: a lot of words on chinnese lang. Lets work on translate that.
    PLayable: you cant talk with npc, because yuu get disconnect server. picking item is not working.

    Thanks Bruno to help me

  10. #25
    Apprentice bruno3231 is offline
    MemberRank
    Feb 2022 Join Date
    12Posts

    Re: Digimon rpg server files and more!

    How to fix Item Pick Up
    In VB open Digimon Project/Game/Entities/Tamer.cs

    In line 703 you will find
    // Inserindo no Banco
    after this add this code

    Items[i] = new Item(i + 1, Emulator.Enviroment.Database.Insert<int>("tamer_inventory" , new QueryParameters() { { "tamer_id", Id } , { "item_codex_id", item.Id }, { "item_tag", item.ItemTag } , { "quantity", quantRestante}, { "slot", i + 1} }));

    Item pick up will be fixed

  11. #26
    Apprentice shinn77 is offline
    MemberRank
    Apr 2017 Join Date
    6Posts

    Re: Digimon rpg server files and more!



    how to connect emulator from mysql database?

  12. #27
    Apprentice bruno3231 is offline
    MemberRank
    Feb 2022 Join Date
    12Posts

    Re: Digimon rpg server files and more!

    Quote Originally Posted by shinn77 View Post


    how to connect emulator from mysql database?
    Check everioment.cs and change the settings.

  13. #28
    Apprentice amatest is offline
    MemberRank
    Sep 2021 Join Date
    15Posts

    Re: Digimon rpg server files and more!

    Can you explain all the steps required for server setup?
    Last edited by amatest; 05-02-22 at 09:57 PM.

  14. #29
    Apprentice Devll is offline
    MemberRank
    Jun 2021 Join Date
    10Posts

    Re: Digimon rpg server files and more!

    this is not my different SQL emulator

    - - - Updated - - -



    - - - Updated - - -

    https://cdn.discordapp.com/attachments/913610371875622932/926554049740939324/Screenshot_6.png

    - - - Updated - - -


  15. #30
    Apprentice alfarraptor is offline
    MemberRank
    Apr 2021 Join Date
    21Posts

    Re: Digimon rpg server files and more!

    This emulator just have 1 map :/



Page 2 of 5 FirstFirst 12345 LastLast

Advertisement