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

Ruins of Hell

Members
  • Posts

    6715
  • Joined

  • Last visited

    Never

Everything posted by Ruins of Hell

  1. > lol u pwned that guy any ways i did that constant and it still says touchofdeath.com ): is there a way i can reload the client and it will not say that? Have you compiled the client in VB6? (File > Make Eclipse Origins.exe)
  2. > I get Error Code 339 for Server MSWINCK.OCX and for Client 339 RICHTX32.OCX help please? Follow [Step 3 of this guide](http://www.touchofdeathforums.com/community/index.php?/page/index.html/wiki.html/_/eclipse-origins/tutorials-1344890800/installing-eclipse-origins-r3).
  3. It might sound obvious, but just to be safe: have you actually equipped the item?
  4. > What's with the link? That has nothing to do with what he wants. It does have the in-game CS:DE GUI.
  5. > I knew the answer but i wanted clarification and he gave none. I understood i had his answer. > > You don't need to come in here and be arrogant with me. If he would of clarified, he would of had his answer hours ago which would of saved everybody time. This doesn't address the main point, your help, although a good attempt at addressing the issue, was wrong. I am not being so much arrogant, as being factual. I do have to come in here, because without it he would have the right answer to the wrong question. His question was quite clear after he clarified, and understandable even before he clarified. **This rule has been in place for a long time. Your help was incorrect.**
  6. > Your alive?????? wtf!!!! That post is from September 11, 2011, so it's not that recent.
  7. > Ya sure it all makes sense now that I understand what he was asking for. I even knew the answer to that question. > > I didn't get the initial question. > > I forgot about the rules that say you can't try to help others on the forums… You are, of course, perfectly free to ask for clarification. However, I don't want people shooting around in the blind in hopes of stumbling upon the solution. Also this rule has been in place for quite some time: refer to [this topic](http://www.touchofdeathforums.com/community/index.php?/topic/98399-dont-know-the-answer-dont-reply/).
  8. > ROFL. the question was badly written. I tried to provide him with help and i asked him to make it clearer IF i didnt answer his question. He didn't say i didn't so i figure I had answered it. > > You don't even know the answer yourself. Why would he want the GAME_WEBSITE when his question says "when the server is offline" > > Maybe he wants a different ip to be availible when the server is offline. Doesn't matter. Your help was extremely detrimental to the actual process. I had zero problem understand what he meant. > when server is down it says server is down please go to [? > > This is a message that displays when the client cannot connect to the server. > > So we search for the default site, touchofdeathforums.com, and we find it's GAME_WEBSITE. Our initial hypothesis is verified by searching for the GAME_WEBSITE: > > ``` > > 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) > > ```](? > > This is a message that displays when the client cannot connect to the server. > > So we search for the default site, touchofdeathforums.com, and we find it's GAME_WEBSITE. Our initial hypothesis is verified by searching for the GAME_WEBSITE: > > [code] > > Call MsgBox()
  9. This is the constant: ``` Public Const GAME_WEBSITE As String = "http://www.touchofdeathforums.com" ``` (Also, see Options.Website server-side.) > its not a link. the client tries to connect to the ip of the client. > > If you want to change the ip, go to the Client's folder and in Data Files, find Config.ini. > > IP=localhost > > Port= 7001 > > Change the ip and port to your server's ip and port. If the server is on, the ip is set up properly and you change the config values above, your client will say server is Online. > > Edit: As I reread your question I realised this could not be what you mean't. > > If your programming and want to know if the client is still connected use "IsConnected = True". > > If I haven't answered your question please reply and try to rephrase it or explain it better. If you don't know the answer, please don't reply.
  10. Confirming this as a bug. You can only withdraw as much gold as you have currently. To fix this, find: ``` If Val(txtCurrency.text) > GetPlayerInvItemValue(MyIndex, tmpCurrencyItem) Then txtCurrency.text = GetPlayerInvItemValue(MyIndex, tmpCurrencyItem) ``` and change it to: ``` If Val(txtCurrency.text) > GetPlayerInvItemValue(MyIndex, tmpCurrencyItem) And CurrencyMenu 3 Then txtCurrency.text = GetPlayerInvItemValue(MyIndex, tmpCurrencyItem) ``` Escalating to the Bug Tracker as well to have this fixed in the next release. [(Bug tracker link.)](http://www.touchofdeathforums.com/community/index.php?app=tracker&showissue=25)
  11. Can you take a picture of the error or tell us what it said?
  12. There's a "Full Version" button at the bottom of the site.
  13. Try looking at the existing code, see if you can get that to work (a good place to start is Sub PlayerMsg). If not, I'll help you later.
  14. > I have a minigame, you just need to click 1 button, its random if you win or lose. If you win you get 50 gold, if you lose you lose 50 gold. > > i want it to exit the minigame button click Sub when the player has less than X gold. It can't. The server cannot and does not send the "Exit Sub" to the client. The "Exit Sub" exits the current sub the server is in. You will need to send a packet back to the client, which the client could then use to determine whether or not to continue.
  15. Uhhh…? What? Exit Sub exits the subroutine it is currently in. It does not send a message to the client telling it to Exit Sub, or stop something. You can have the server send that message back to the client with another packet, and then the new packet could hide the form from the client.
  16. What part "doesn't work"? What steps have you followed to add this packet? Also try this: ``` Sub HandleCheckCurrency(ByVal index As Long, ByRef Data() As Byte, ByVal StartAddr As Long, ByVal ExtraVar As Long) Dim Buffer As clsBuffer Dim itemamount As Long Set Buffer = New clsBuffer Buffer.WriteBytes Data() itemamount = Buffer.ReadLong ' check gold If itemamount > HasItem(index, 1) Then PlayerMsg index, "Not enough gold.", BrightRed Exit Sub End If Set Buffer = Nothing End Sub ``` Now: ``` Call CheckCurrency(x) ``` will check if they have more than x currency.
  17. ``` Untitled: [spoiler]Content[/spoiler] Titled: [spoiler]Content[/spoiler] ```
  18. Ruins of Hell

    Race

    First, look at how classes are done. Try to replicate that except change class to race. Then you could do something like: ``` Select Case Player(index).Race Case 1 ' player is race 1' Select Case Player(index).Class Case 1 ' player is race 1 & class 1 ' Case 2 ' player is race 1 & class 2 ' End Select Case 2 ' player is race 2' Select Case Player(index).Class Case 1 ' player is race 2 & class 1 ' Case 2 ' player is race 2 & class 2 ' End Select Case 3 ' player is race 3' Select Case Player(index).Class Case 1 ' player is race 3 & class 1 ' Case 2 ' player is race 3 & class 2 ' End Select End Select ```
  19. Look at Function HasItem.
  20. Ruins of Hell

    Error

    Did this happen the first time you opened Eclipse?
  21. You're close. It's Sub GivePlayerEXP.
  22. > I don't see any download. Maybe I'm looking at the wrong post… > > [http://www.touchofde…account +editor](http://www.touchofdeathforums.com/community/index.php?/topic/119140-eo-20-account-editor/page__hl__%2Baccount+%2Beditor) Mhmm, that's exactly what I said: > attachments have not yet been ported over to the new forums
  23. > love you guys (no homo ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png))! You helped me understand this a little bit more, thanks. > > What is the deal with the disappeared tutorial? I got the old one in my bookmarks, the thread was named: "[EO] (hopefully) simple packet tutorial" > > How to handle the same exact thing with experience? I mean what to use instead of "giveinvitem"? > > thanks! I thought that tutorial was great too. [Luckily the new search is pretty awesome.](http://www.touchofdeathforums.com/community/index.php?/topic/115981-eo-hopefully-simple-packet-tutorial/) ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
×
×
  • Create New...