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

Lavos

Members
  • Posts

    867
  • Joined

  • Last visited

About Lavos

  • Birthday July 7

Lavos's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

0

Reputation

  1. lol that opt menu is oversized, the interface still needs work with consistency.
  2. Lavos

    NeiR Automata

    its not bad, and its not good either.
  3. Where is the server located on earth?
  4. @'Mohenjo: > That makes me feel better XD I've debated on switching to dx9 for awhile but didn't want to change all the code since I had other things to do. As for the FMOD to FMODex, from what I googled, you have to pay for FMODex? If so then no. The GDI might be do-able but we'll see if it'll fit in this update or if it has to wait for another one (time frame and all). I've made a wrapper for it, use it if you think you can replace the old FMOD. Download: [CLICK HERE](http://www.mediafire.com/file/91ttx254r1g8o5w/FMOD-EX.rar)
  5. -Get rid of the GDI crap for the game menus and render everything in DX8 -Switch to DX9 -swap out FMOD to FMODex
  6. ^ what or3o says is a critical clue. You're doing things wrong way.
  7. Did some tweaking to get to work with my engine. I could say that Matts code is safe to use with little adjustments. Good Job matt! ![](http://i.imgur.com/6Fv3iJq.gif)
  8. I started working on that example code MATT, though some of the code is like wtf? lol im cleaning it off now. Its missing a lot.
  9. Lavos

    Eclipse Engine

    Well helladen, you know what to expect on eclipse… Just pave the road and people will walk thru it.
  10. @'Ambardia': > Put in a fake one or don't download the game. Richy if thats you, you should just come back to eclipse and pimp out an engine.
  11. @'Ambardia': > Not a scam, it's a download for the client. I don't like the idea of giving out my billing address just to download a game.
  12. Nice good to see that you're still around, is this still being worked on? That Download link of the store webpage looks like utter scam lol.
  13. Dual Screen mapping like a boss. Still looking for good mappers though. ![](http://i.imgur.com/a07tcf1.jpg) Working on drafts as well. ![](http://i.imgur.com/MdzG8x7.jpg)
  14. ooooOOOO!OO!O!OOOOOOOOOooooO! brb im gunna do it now. * * * @'Growlith1223': > nono, you don't have to reset the GetTick, only the tmr variables within the Loop(both client and server), basically, that first if for GetTick < 0, create an End If and within that, just do HasRollBack = True. in the loop, around the beginning of the loop, check if HasRollback = True, if so, reset values and HasRollback = false So heres what i did. ``` Public Sub GameLoop() Dim FrameTime As Long Dim Tick As Long Dim TickFPS As Long Dim FPS As Long Dim i As Long Dim LoopI As Long Dim FogTmr As Long Dim ClockTmr As Long Dim Result As FMOD_RESULT MenuType = 1 ShadeOut = True If hasRollback = True Then ' reset timers FogTmr = 0 ClockTmr = 0 Menu_Alert_Timer = 0 TradeTimer = 0 LastUpdateTime_ElasticBars = 0 LastUpdateTime_GameInput = 0 LastUpdateTime_WalkTimer = 0 LastUpdateTime_MapAnim = 0 LastUpdateTime_Ping = 0 LastUpdateTime_TextureReset = 0 hasRollback = False End If ```Etc. Etc. then ``` Public Function GetTick() As Long GetTick = GetTickCount If GetTick < 0 Then hasRollback = True GetTick = GetTick + MAX_LONG End If End Function ``` Do I have to reset timer from data type recs and other places as well? like player(myindex).attackTimer ? or Just the timers from the loop?
×
×
  • Create New...