To all Tantra newbie developers I think you might like this

Page 10 of 24 FirstFirst ... 2345678910111213141516171820 ... LastLast
Results 136 to 150 of 353
  1. #136
    Enthusiast joshuaes2000 is offline
    MemberRank
    Feb 2014 Join Date
    Iloilo, IloiloLocation
    26Posts

    Re: To all Tantra newbie developers I think you might like this

    Thanks dude. I have a new problem ... when i open the GM Tools it stucks in creating GM Management Dlg..

  2. #137
    Developer Terrified is offline
    MemberRank
    Dec 2013 Join Date
    Six MountainsLocation
    229Posts

    Re: To all Tantra newbie developers I think you might like this

    ODBC Needed:

    Tantra - for Tantra Login
    BILL_CONN - for Premium Item
    TantraGM - for GMTool
    UserLogin - for Registration

    MSSQL SERVER ADVANCE 2012 and MSSQL Management Tool - for Restoring/Creating/Modifying Tantra Database

    Database Needed:
    billcruxphil
    Tantra
    userlogin

    Tantra has two ODBC (Tantra and TantraGM) for Game Data and Ranking
    billcruxphi = BILL_CONN (ITEMSERV.EXE and Webmall)
    userlogin = UserLogin (For DBSERV and login.php)

    for billcruxphil database, you only need the dbo.tblUserInfo (for Item Mall/Webmall/Krishuna) and dbo.tblUser (for WebMall Item) Leave the rest you might need them when you want to modify everything from top-up cards to expiry date.

    for userlogin database, you will only use dbo.tblAccount (This is for Player registration in the website and Player Verification of HTLauncher and HTSSetting.txl)

    for Tantra database, use the dbo.tblAccount (this is updated link between your DBSRV.EXE and your Account Details and GMTool), dbo.tblCharacter_tribe (Usen in more filtered ranking), dbo.GameInfo00 to dbo.GameInfo05 (the table used by your caste system, Ranking and SQLDAEMON.EXE linking to dbo.TantraBackup00 to dboTantraBackup05 that each of this tables are inter-related with each other),

    The result why there is no update on caste system is that, the Series of interlink between MSSQL tables are not tested, checked and updated. You have to do trial and error as to modify everything that records all the data in the game. with SQLDAEMON.EXE running, it automatically transmit the data from dbo.TantraBackup00 to dbo.GameInfo00 and Replicating manually to dbo.TantraBackup01 with dbo.GameInfo01 and up to 05. If this did not record anything, you know where to troubleshoot.

    That's all I could share today. I just explained how MSSQL, ODBC, Game client and Web inter connects. To really understand MSSQL you have to understand how its data saved and retrieved from every table in the database. I will not elaborate more of it. You have to DoITYourself in order to make it work.

    This is for the newbies who are too lazy to search for the posted answers.

    Credits to infinium, yagamy, hetrojeneo, masteryuda, john torres and the developers of ragezone. Because this data posted in here are combined post of this developers.

  3. #138
    Enthusiast joshuaes2000 is offline
    MemberRank
    Feb 2014 Join Date
    Iloilo, IloiloLocation
    26Posts

    Re: To all Tantra newbie developers I think you might like this

    How do you fix when it says client-server version dismatch. i already changed the settings and the worldsettings version to 6.9.0.9

  4. #139
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by Terrified View Post
    ODBC Needed:

    Tantra - for Tantra Login
    BILL_CONN - for Premium Item
    TantraGM - for GMTool
    UserLogin - for Registration

    MSSQL SERVER ADVANCE 2012 and MSSQL Management Tool - for Restoring/Creating/Modifying Tantra Database

    Database Needed:
    billcruxphil
    Tantra
    userlogin

    Tantra has two ODBC (Tantra and TantraGM) for Game Data and Ranking
    billcruxphi = BILL_CONN (ITEMSERV.EXE and Webmall)
    userlogin = UserLogin (For DBSERV and login.php)

    for billcruxphil database, you only need the dbo.tblUserInfo (for Item Mall/Webmall/Krishuna) and dbo.tblUser (for WebMall Item) Leave the rest you might need them when you want to modify everything from top-up cards to expiry date.

    for userlogin database, you will only use dbo.tblAccount (This is for Player registration in the website and Player Verification of HTLauncher and HTSSetting.txl)

    for Tantra database, use the dbo.tblAccount (this is updated link between your DBSRV.EXE and your Account Details and GMTool), dbo.tblCharacter_tribe (Usen in more filtered ranking), dbo.GameInfo00 to dbo.GameInfo05 (the table used by your caste system, Ranking and SQLDAEMON.EXE linking to dbo.TantraBackup00 to dboTantraBackup05 that each of this tables are inter-related with each other),

    The result why there is no update on caste system is that, the Series of interlink between MSSQL tables are not tested, checked and updated. You have to do trial and error as to modify everything that records all the data in the game. with SQLDAEMON.EXE running, it automatically transmit the data from dbo.TantraBackup00 to dbo.GameInfo00 and Replicating manually to dbo.TantraBackup01 with dbo.GameInfo01 and up to 05. If this did not record anything, you know where to troubleshoot.

    That's all I could share today. I just explained how MSSQL, ODBC, Game client and Web inter connects. To really understand MSSQL you have to understand how its data saved and retrieved from every table in the database. I will not elaborate more of it. You have to DoITYourself in order to make it work.

    This is for the newbies who are too lazy to search for the posted answers.

    Credits to infinium, yagamy, hetrojeneo, masteryuda, john torres and the developers of ragezone. Because this data posted in here are combined post of this developers.
    TantraBackup00 now updating...
    GameInfo00 now updating...(using SQL Agent to automatically execute "delete" & "insert" commands)
    Rank00.txt now showing the first test account as "2 1 $CharacterName"
    MRank00.txt no text or signs yet...(What is this for btw? Coz everytime I tried to delete it there no resistant coming from any of opened application (dbsrv.exe | msgsrv.exe | itemsrv.exe | etc.), meaning nothing is sharing with this file BUT with regards to Rank00.txt -> DBRSRV is holding it prohibiting me to delete it (so I sensed its useful atm)



    Tell me what did I missed please.

  5. #140
    Developer Terrified is offline
    MemberRank
    Dec 2013 Join Date
    Six MountainsLocation
    229Posts

    Re: To all Tantra newbie developers I think you might like this

    @elitegeek did you put the substrings?

    Like this below:

    Q: D:\TR\Share
    G: D:\TR\DBSRV\guild
    R: D:\TR\DBSRV\current_user
    K: D:\TR\SQLDAEMON\Rank
    S: D:\TR\DBSRV\Export

    All of it should be updating Rank00.txt and Mrank00.txt there was a delay for update , maybe 5 minutes or depends on the SQLDAEMON time.

  6. #141
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by Terrified View Post
    @elitegeek did you put the substrings?

    Like this below:

    Q: D:\TR\Share
    G: D:\TR\DBSRV\guild
    R: D:\TR\DBSRV\current_user
    K: D:\TR\SQLDAEMON\Rank
    S: D:\TR\DBSRV\Export

    All of it should be updating Rank00.txt and Mrank00.txt there was a delay for update , maybe 5 minutes or depends on the SQLDAEMON time.
    Thanks I just found out that substring R is not setup properly. I guess I overlooked its path. I modified it already and lets see what happen.

    Will give you update very soon but atm my caste is now working. I guess it will take time to update the caste maybe 24-48 hrs just like in Tantra 3000fr.

  7. #142
    Developer Terrified is offline
    MemberRank
    Dec 2013 Join Date
    Six MountainsLocation
    229Posts

    Re: To all Tantra newbie developers I think you might like this

    to those testing the server and client, Item Mall, Webmall, Rank, caste System, Msgboards... I just did something to test if its working, I put a few wrong IP and wrong ports and test it. I did change the ports to test if it will work with other ports than 3001-3035... and it all went well. so be curious and experiment. by changing ports on the zones gives you more protection to server attacks (which most developers encountered and has been frustrating to protect).
    Last edited by Terrified; 14-05-14 at 11:21 AM. Reason: Wrong spelling corrected

  8. #143
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by Terrified View Post
    to those testing the server and client, Item Mall, Webmall, Rank, caste System, Msgboards... I just did something to test if its working, I put a few wrong IP and wrong ports and test it. I did change the ports to test if it will work with other ports than 3001-3035... and it all went well. so be curious and experiment. by changing ports on the zones gives you more protection to server attacks (which most developers encountered and has been frustrating to protect).
    I agree. Even me allotted that much time to use different ports in each zones. I even search for it on which ports are safe to use. Also I didn't use a range of ports just like the ones provided in the guides.

    Anyways, just an update, I am now editing my param to suffice my preference and later test the Karya Dungeon and Fortress War schedules.

  9. #144
    تانترا اون لاين Lunatic is offline
    MemberRank
    Jan 2014 Join Date
    KoreaLocation
    420Posts

    Re: To all Tantra newbie developers I think you might like this

    Can anyone know's how to disable those ashramboard mail and party system ??
    Please :)

  10. #145
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    To whom it may concern:

    I am confused on what files should I upload in the internet for my friends to download for them to play. I already rented a Static IP address @ GoDaddy as per advised by @Terrified. As what I can see in other clients there is NO Serverlist.txt. Question is shouldn't I upload Serverlist.txt in the file package?

    Please tell me more about the sharing of my Client files over the public on what files should I upload or not.

  11. #146
    Developer Terrified is offline
    MemberRank
    Dec 2013 Join Date
    Six MountainsLocation
    229Posts

    Re: To all Tantra newbie developers I think you might like this

    You have to Execute a public client. And Delete the Serverlist.txt leaving you with Serverlist.bin. Compact it as an installer and let your other friends download them.

  12. #147
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by noesis123 View Post
    Can anyone know's how to disable those ashramboard mail and party system ??
    Please :)
    Why disable those btw?

  13. #148
    تانترا اون لاين Lunatic is offline
    MemberRank
    Jan 2014 Join Date
    KoreaLocation
    420Posts

    Re: To all Tantra newbie developers I think you might like this

    Players can use that system to crash any map's by using exploit code shared by someone xD We are already disable those codes in game but nothing happen's I think they are using DDOS tool to down our maps . That's why i' m asking if somebody can help us how to disable those system .. :))i ' already use k3 / k4 MSGSRV disable /ashramlv in Htmessage then Filter those word's that can be use in game in chatfilter .but nothing happen's ! HAHAH XD

  14. #149
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by noesis123 View Post
    Players can use that system to crash any map's by using exploit code shared by someone xD We are already disable those codes in game but nothing happen's I think they are using DDOS tool to down our maps . That's why i' m asking if somebody can help us how to disable those system .. :))i ' already use k3 / k4 MSGSRV disable /ashramlv in Htmessage then Filter those word's that can be use in game in chatfilter .but nothing happen's ! HAHAH XD
    I see if this is the case I might want to disable mine too but I have no idea how. Hoping someone could enlighten us regarding this matter. Anyways, do you have a HTScrollQuestSystem.txl in English language? or perhaps a convert for this file from xml to txl?

  15. #150
    تانترا اون لاين Lunatic is offline
    MemberRank
    Jan 2014 Join Date
    KoreaLocation
    420Posts

    Re: To all Tantra newbie developers I think you might like this

    Quote Originally Posted by elitegeek View Post
    I see if this is the case I might want to disable mine too but I have no idea how. Hoping someone could enlighten us regarding this matter. Anyways, do you have a HTScrollQuestSystem.txl in English language? or perhaps a convert for this file from xml to txl?

    I' m also searching that one HAHA .well we have to wait if somebody can share HtScrollQuestSystem.txt in english version :D



Advertisement