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

Displaced

Members
  • Posts

    1019
  • Joined

  • Last visited

    Never

Everything posted by Displaced

  1. Displaced

    List of Donators

    ppl are just too lazy (or too stupid) to google "40 british pounds in U.S. dollars"… I didn't donate yet. I've to check how much it will cost to transphere to dollars...
  2. It has something to do with the getTickCount function. If virtual servers are longer up than about 31 days, you will get a negativ value of getTickCount. That's why all timed events break.. But it's strange that the server return's an overflow…
  3. I'm intrested if this worked for you?
  4. Try this: modGeneral.bas Replace: ``` Public Declare Function GetTickCount Lib "kernel32" () As Long ```with: ``` Public Declare Function MyGetTickCount Lib "kernel32" Alias "GetTickCount" () As Long ```Add: ``` Public Function GetTickCount() As Long If (MyGetTickCount < 0) Then GetTickCount = MAX_LONG - MyGetTickCount() Else GetTickCount = MyGetTickCount() End If End Function ``` modConstants.bas Add: ``` ' Types Max Values Public Const MAX_LONG As Long = 2147483647 ```
  5. Hey Admins, I know PM's aren't so welcome so i'll post it here. Since it's nothing extremly important.. I have a suggestion for board mod's. Currently I can't pin/unpin, move or edit other topics. It would be very nice if you could change that, because i can't moderate anything without those options. The only thing i can do is close topics or unclose them… At least it would be nice if i could move and pin/unpin them. Thank you, Niko
  6. Displaced

    PCI Mover?

    http://www.isp-proshop.de/Riser-Card.html
  7. Say that those ppl who want to bring down the server ;)
  8. I know when it happens but if you send a wrong packet it will crash..
  9. You should insert checks whenever you read a long or an int or any other type of number out of the buffer. I had the problem (i don't know why it disappeared..) that the server had some sort of funny mistake "Out of memory" (So 4 gb of memory aren't enough..). I checked why and the problem was a crazy high number after a "ReadLong" in the "ReadString" function. So i think no one will write a text over maybe 2000 characters? I hope you understand what i want to tell you..
  10. Displaced

    Buttons

    Maybe you deleted the initial loading functions?
  11. Robin, do you know how much time you can spend in the next month? I was surprised when you released 1.3.0 because i thought you haven't got much time for it right now. I don't want a release date i just want to know if you want to spend time next 1-2 month in there. And what about java? Do you still work with fab on it? And if so are you going to abandon vb EO ?
  12. Must be something like 1213056000 seconds… rounded up. Well 19 1/2
  13. the left food looks a bit cippled but it's nice. i couldn't even do that…
  14. This is like pooping the features out of your fingers ôo. I definitely need more time to write a feature..
  15. Are you sure he will release this? ôo
  16. Displaced

    [EOXMAS] Players

    give it a try, if this does not work, you have to search this in the server too.
  17. Displaced

    [EOXMAS] Players

    search within the client src for ``` ' Check to see if a player is already on that tile For I = 1 To MAX_PLAYERS If IsPlaying(I) And GetPlayerMap(I) = GetPlayerMap(MyIndex) Then If GetPlayerX(I) = X Then If GetPlayerY(I) = y Then CheckDirection = True Exit Function End If End If End If Next I ``` I don't know if this is in the server too…
  18. Displaced

    [EOXMAS] Players

    well you could use pvp enabled maps and disabled maps.. you don't need to fight in town so yeah you could disable the collision for peace zones
  19. 1\. you can't if you can't programm in vb6 2\. i don't know if this is possible.. there's no reason to do that atm 3\. return
  20. Displaced

    Face Maker

    This thing is EPIC =D
  21. Stupid question: Is ScrlBossMap a scrollbar?
  22. did you changed the NpcRec ?
  23. If I'm right, its not okay to do "one word posts". Well just change them in the file "modConstants.bas" and recompile your server & client.
  24. Are you sure that you looked in server src directory? Otherwise try redownload EOX & look again. There is a modCombat.bas !
×
×
  • Create New...