Open webpage from client!

01/16/2013 16:04 derpingson#1
Hello, i'm trying to figure out a way that opens a web page in the player's computer.

i tried
PHP Code:
 System.Diagnostics.Process.Start("http://www.google.com"); 
have you got any suggestions?

thank you
01/16/2013 18:54 _DreadNought_#2
search.
01/16/2013 18:57 littlechris95#3
try this:

Code:
client.Send(new Network.GamePackets.Message("http://www.google.com", System.Drawing.Color.Red, 2105));
01/16/2013 19:34 pro4never#4
To elaborate on what he's saying...


You must send the chat packet using subtype 2105 to open the website on the person's computer. You must keep in mind that doing any form of open process type code is NOT going to work. You only have access to the machine you host the server on. It just happens that there's a packet subtype in the client responsible for opening links and therefor you must go with conquer supported packets for any sort of client controls.
01/16/2013 21:53 .Kazuya#5
Yeah that should work