![]() |
Fix Warp Tile - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Resources (https://mirage-engine.uk/forums/forumdisplay.php?fid=49) +---- Thread: Fix Warp Tile (/showthread.php?tid=384) |
Fix Warp Tile - funkynut - 23-10-2006 Player Warp Tiles Especially for Advocate ![]() At the moment, the way player movement is currently handled is, the server moves the player onto the next tile, then tells the client that the player has moved at which point the client starts moving the player. Now if the player moves onto a tile with an attribute, the server will apply that effect to the player before the client actually visually shows that the player is on the tile. Aim of this tutorial is to change the warp tile so that it waits until the player is on the tile fully before warping them So to begin, find this section of code in modGamelogic in the server Code: ' Check to see if the tile is a warp tile, and if so warp them This piece of code basically checks if there’s a warp tile immediately after a player has moved (Remember me saying that the server applies tile attribs straight away?) Now we need to change that so that it’ll just tell the server that the player will need to be warped soon so Change that too… Code: ' Check to see if the tile is a warp tile, and if so warp them Now then, for the people who are actually reading this, you’d have noticed that I’ve used something you haven’t got so add this part to the server AccountRec type in modTypes Code: WarpTick As Long Also, don’t forget to change that 200 value to something more suitable for your server (depending on what speed your players walk in the client, since it depends on fps and walk/run speed) K, add to the bottom of any module the following sub Code: Public Sub CheckWarp() Simple routine, checks every player, see if they need to warp, check if its actually time to warp, then after they’ve warped, reset warp tick so we don’t continuously warp them Now for the final part, we need to call it from somewhere, this can be your choice but I’ve done it from another custom timer I did consider using GameAi or something but that’s called every 500ms, and speeding that up could have various effects on the game (npcs on speed anyone?) So I thought the safest option would be to use a timer I created a simple timer with interval of 25 (although you could change this, I just used it since it was ¼ of 100) and inside was the code Code: Call CheckWarp That is basically it, simple fix, not exactly 100% since I’m only delaying the warp and not timing it properly but it’ll do ![]() Oh yea, I forgot to mention, I havent tested this on servers with more then one person, but I dont see anything that should cause a problem - Boo - 12-04-2007 When i added the Call CheckWarp into timer code, it gave me compile error on that line and said 'Invalid use of property' Any idea? - Robin - 12-04-2007 Boo Wrote:When i added the Call CheckWarp into timer code, it gave me compile error on that line and said 'Invalid use of property' You are invalidly using that property. That's your problem. - Boo - 12-04-2007 why, i did wat ti said, put that in the code :\ Ok lemme revise my question... "How do I fix?" - funkynut - 12-04-2007 well what property is invalid? - Boo - 12-04-2007 i made the timer in server and called it WarpTimer and made it interval 25 like you said heh then double clicked it and added that Call message :\ - Robin - 12-04-2007 Debug the WarpTimer subroutine. It's not the time that's bugging, it's the code. Or, you could become less retarded, read through the code and type it in, instead of copy and pasting. But, thats not going to happen any time soon, is it? - Boo - 12-04-2007 hmm well if i copied/paste then it would be exact same and how come it isnt? Stop fighting with me ur annoying me now. - Rian - 12-04-2007 This tutorial works fine. Something you added previous to this tut must be interfering. Or you maybe you just fucked up the tutorial. Of course it's always possible that something is screwed up with VB - Boo - 12-04-2007 alright thanks, i'll double check when i get my laptop backup running. Battery keeps dieing idk why ![]() ---------------- EDIT: Lmao, i mis-spelled my Timer lol, its fixed, ty for support ![]() |