Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

How to remove server down visit touchofdeath.com message.


waseemk
 Share

Recommended Posts

Go to modConstants.

Then, find

```
' Website
Public Const GAME_WEBSITE As String = "http://www.touchofdeathforums.com"

```
See that 'http://www.touchofdeathforums.com"?

I think you already know what to do with it. Modify BOTH Server and Client.

[Edit]

Oh, how stupid of me. That thing I gave you above (^^^) is just to change the website. I thought it was changing the website lol xD
Link to comment
Share on other sites

Client

Find:
```
Call MsgBox("Sorry, the server seems to be down.  Please try to reconnect in a few minutes or visit " & GAME_WEBSITE, vbOKOnly, Options.Game_Name)
```
Edit:
```
("Sorry, the server seems to be down.  Please try to reconnect in a few minutes or visit", vbOKOnly, Options.Game_Name)
```
Leaving the vbOKOnly and Option.Game_Name untouched.
Link to comment
Share on other sites

@abhi2011:

> Client
>
> Find:
> ```
> Call MsgBox("Sorry, the server seems to be down.  Please try to reconnect in a few minutes or visit " & GAME_WEBSITE, vbOKOnly, Options.Game_Name)
> ```
> Edit:
> ```
> ("Sorry, the server seems to be down.  Please try to reconnect in a few minutes or visit" vbOKOnly, Options.Game_Name)
> ```
> Leaving the vbOKOnly and Option.Game_Name untouched.

You accidentally removed a comma there, so that won't work.

@GeminiXcastorm:

> could you be any less spacific? it would be handy if you told me/ us what frm file its in

Yes, I could be less specific. Don't tempt me.

You can search throughout the entire project very easily. Press Control + F -> Select "Current Project" -> Type in the start of the message -> Press Enter. [If you still can't get it, here's a guide](http://php.webuda.com/eclipse/guide/ctrlf/slideshow.html).

* * *

If you really need a specific guide, just find:
```
Sorry, the server seems to be down.

```
and then change the message in quotes to whatever you want.

Next, you should change the GAME_WEBSITE constant (search GAME_WEBSITE and change the website in quotes) to your site.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...