Server + Client @ 1.4.2 & Guide

Status
Not open for further replies.
i redid the whole thing every step but i still get this

Service Description Process # Status
Logservice ./logservice 0 Offline
Auth Daemon ./authd 1 Online
Unique Name Daemon ./uniquenamed 11 Online
Game Anti-Cheat Daemon ./gacd 0 Offline
Faction Daemon ./gfactiond 0 Offline
Game Delivery Daemon ./gdeliveryd 1 Online
Game Link Daemon ./glinkd 1 Online
Game Database Daemon ./gamedbd 21 Online
Map Service ./gs 0 Offline

i choose to do this on ubuntu (no vserver, the real OS) instead of debian can anyone figure what the issue is?


1. Install Debian 5.x- installed ubuntu instead
2. Install Kernel-skipped
3. Install PW-Server Files-did all
4. Install Libraries-skipped only 32 system
5. Install MySQL -did all
6. Configure PW Web Administration (Jetty + pwAdmin)-did all
7. Autostart Jetty Web Application Server-did all
8. Autostart Basic Firewall-did all
9. Finalize-did all
 
Last edited:
i`ve tried your server and your client the server runs good
Notice:1) auth is corrupt and it will corrupt the database in time
2 Your Patch is corrupt as well the models have no animation gfx .
3 nice done with the task and client also gshop.

Best Regards!
 
i`ve tried your server and your client the server runs good
Notice:1) auth is corrupt and it will corrupt the database in time
2 Your Patch is corrupt as well the models have no animation gfx .
3 nice done with the task and client also gshop.

Best Regards!

On number 1, could you expand more on that? I haven't noticed any issues with auth in the test release he has given

2. What patch exactly are you using? PWD works perfectly for me and I haven't had any issues whatsoever with gfx, are you sure you applied to patch properly?
 
lol sory my bad @_@ the gfx and models works is just that i started the wrong client and the auth is bugged for sure this is an old auth with many bugs and it will cause the gamedbd data to brake i`l upload a never relised on this forum auth with this one you dont have to wipe the server after one year or 2.
 
You will not with auth but with gameddb

did any of you tested the quest yet?
 
what makes you believe the error in gamedbd comes from authd?
do you have any deeper information / log entries for that?

btw. this is complete authd.class code
Code:
import com.goldhuman.Common.Conf;
import com.goldhuman.Common.Octets;
import com.goldhuman.Common.ThreadPool;
import com.goldhuman.IO.PollIO;
import com.goldhuman.IO.Protocol.Protocol;
import com.goldhuman.xml.parser;
import java.io.FileInputStream;
import java.io.PrintStream;
import protocol.GAuthServer;

public class authd
{
  public static void main(String[] paramArrayOfString)
  {
    try
    {
      Conf localConf = Conf.GetInstance("authd.conf");
      GAuthServer localGAuthServer = GAuthServer.GetInstance();
      GAuthServer.GetInstance().shared_key = new Octets(localConf.find("GAuthServer", "shared_key").getBytes());
      Protocol.Server(localGAuthServer);
      System.out.println("authd:: add PollIO task.");
      try
      {
        parser.parse(new FileInputStream(paramArrayOfString[0]));
      }
      catch (Exception localException2)
      {
        localException2.printStackTrace();
      }
      ThreadPool.AddTask(PollIO.GetTask());
      while (true)
        try
        {
          Thread.sleep(1000L);
          continue;
        }
        catch (Exception localException3)
        {
        }
    }
    catch (Exception localException1)
    {
      localException1.printStackTrace();
    }
  }
}


i think there isn't a bug inside, also no connection to gamedbd, it simply just use the PW API (same as used in iweb).

Are you referring to a newer PW Java API (i.e. jio.jar)?
 
Last edited:
Login with your web administration password (the real password, not the md5 encoded of course)





what password do i use i tried both i entered and still it isnt working lol

i got the web page up awsome i did that right but password i got alittle lost please help me out
 
Login with your web administration password (the real password, not the md5 encoded of course)





what password do i use i tried both i entered and still it isnt working lol

i got the web page up awsome i did that right but password i got alittle lost please help me out

 
ok EDIT:: LAST [POST}

OK I GOT IT WORKING properly now and everything is smooth but logon server is offline ?

also how do i get a client to connect to the server help would be sooo welcome :)
 
Last edited:
Here is the auth that i have is different then the one you have and it starts different to...no more comments.
 
Last edited:
Here is the auth that i have is different then the one you have and it starts different to...no more comments.


Your authd is exactly the same as offered from beastie's release (my release uses also the authd from beastie), except that you have an older mysqlconnector and some unused mssql libs (the rest of your files is source code and cvs version control stuff, these are unimportant and can be deleted)...
 
Last edited:
Status
Not open for further replies.
Back