8 Replies - 5499 Views - Last Post: 03 July 2006 - 11:40 AM

#1 mjw1201  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 6
  • Joined: 28-June 06

Browser based game client

Posted 28 June 2006 - 08:10 PM

There's this game called ultima online. A program called uogateway allows others to connect to free servers tht normal people host. The question I have for you is, is there a way I could make a link through a webpage php html or w/e...where it would open the Game Client with a certain port and ip.....jus like uogateway does, but theirs uses a program to launch it..i want to make one browser based if possible.
Is This A Good Question/Topic? 0
  • +

Replies To: Browser based game client

#2 1lacca  Icon User is offline

  • code.rascal
  • member icon

Reputation: 44
  • View blog
  • Posts: 3,822
  • Joined: 11-August 05

Re: Browser based game client

Posted 29 June 2006 - 06:35 AM

I think it is possible using a signed applet, or ActiveX on Windows.
Was This Post Helpful? 0
  • +
  • -

#3 mjw1201  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 6
  • Joined: 28-June 06

Re: Browser based game client

Posted 29 June 2006 - 06:56 PM

Heya. I play this game called ultima online..And people make their own "shards" (servers) for it.. I was wondering if their was a way I could create a Link that will open the Game Client with a certain ip and port..

example..

[Johns PVp Shard] <link



(and when people click the link, the game client.exe comes up with the guys server ip and port) so in other words it connects to his server.

and if not that way, anyway possible to make it work through VB

WANTED TO CLARIFY MY QUESTION
Was This Post Helpful? 0
  • +
  • -

#4 1lacca  Icon User is offline

  • code.rascal
  • member icon

Reputation: 44
  • View blog
  • Posts: 3,822
  • Joined: 11-August 05

Re: Browser based game client

Posted 30 June 2006 - 02:47 AM

Are you aware of any program that do something like this?
Was This Post Helpful? 0
  • +
  • -

#5 mjw1201  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 6
  • Joined: 28-June 06

Re: Browser based game client

Posted 30 June 2006 - 09:11 AM

yes uogateway....uogateway.com .. but the thing is.. they are refusing to add servers anymore because their staff are having issues. So This is why I wanted to create one.
Was This Post Helpful? 0
  • +
  • -

#6 1lacca  Icon User is offline

  • code.rascal
  • member icon

Reputation: 44
  • View blog
  • Posts: 3,822
  • Joined: 11-August 05

Re: Browser based game client

Posted 30 June 2006 - 11:32 AM

I see two options:

1) You launch the game exe from an ActiveX control of from a Java applet. Both of these are browser based techniques, but you have to somehow find the exe at least once - registry entry, search for it, etc (depending on the method used, it might be advisable ot store the location, in a cookie, registry, whatever clever way you come up with). Also, as by default these things are not allowed to acces the local filesystem, you have to sign them, so that the users are asked if they trust you, and let your program get special privileges.

2) You need to setup a program first, and associate it either with a protocol, or a filetype, so when you click one of these ,your program executes it and launches your game with teh desired paramteres. This might be tricky considering platform dependent things.

Or you can still make something like uogateway does...
Was This Post Helpful? 0
  • +
  • -

#7 mjw1201  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 6
  • Joined: 28-June 06

Re: Browser based game client

Posted 02 July 2006 - 10:51 PM

View Post1lacca, on 30 Jun, 2006 - 10:24 AM, said:

I see two options:

1) You launch the game exe from an ActiveX control of from a Java applet. Both of these are browser based techniques, but you have to somehow find the exe at least once - registry entry, search for it, etc (depending on the method used, it might be advisable ot store the location, in a cookie, registry, whatever clever way you come up with). Also, as by default these things are not allowed to acces the local filesystem, you have to sign them, so that the users are asked if they trust you, and let your program get special privileges.

2) You need to setup a program first, and associate it either with a protocol, or a filetype, so when you click one of these ,your program executes it and launches your game with teh desired paramteres. This might be tricky considering platform dependent things.

Or you can still make something like uogateway does...



would u be able to help with either of those things..outside of the forums via e-mail or msn
Was This Post Helpful? 0
  • +
  • -

#8 spawn  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 1
  • Joined: 02-July 06

Re: Browser based game client

Posted 02 July 2006 - 11:06 PM

Yea'h, I have tried to get it to open from these 2 links as they are both .exe's that could do the trick in the folder...

uo://LoginServer=spawn.dynalias.com,2593

and also tried

client://LoginServer=spawn.dynalias.com,2593

Yet neither of these opens either of the programs... so any help is appreicated.

Edit: NVM. I discovered that their not in app paths in registry :(... now I need to get them to work a different way... =/

This post has been edited by spawn: 02 July 2006 - 11:46 PM

Was This Post Helpful? 0
  • +
  • -

#9 1lacca  Icon User is offline

  • code.rascal
  • member icon

Reputation: 44
  • View blog
  • Posts: 3,822
  • Joined: 11-August 05

Re: Browser based game client

Posted 03 July 2006 - 11:40 AM

View Postmjw1201, on 3 Jul, 2006 - 06:43 AM, said:

would u be able to help with either of those things..outside of the forums via e-mail or msn


It is best for the community if these problems are solved on the forum itself, so others can learn from this, too. I'll be on vacation for a week now, but after that hopefully I'll be here to help. Until that, choose which ever method you prefer, and I am sure that somebody will be able to help.
Maybe the standalone application is the easiest way to go - like uogateway does-, after that the 2nd and finally the first. I think you'll get help whichever you choose here.
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1