[Include] Timer Fix (seamlessly makes SetTimer very accurate)
#26

Quote:
Originally Posted by ******
Посмотреть сообщение
I don't think that actually does what you think it does (and I know you don't think it solves Slice's issue)... Your method of calculating "iEnd" is wrong - check the original "SendClientMessageEx" code by ZeeX on which this is based (although I'm not sure if the method you're trying to emulate was in his code or my modification - check them both).

That code will help eventually, although frankly Slice I think "y_inline" will help FAR more (as in basically solve your problems MOSTLY - there are some small issues with strings, but they don't currently work with timers outside y_timers anyway). In fact this idea makes me think I should port y_timers to use y_inline entirely - they do half the same things and it will make the code MUCH neater.

For reference I'm thinking call "Callback_Get" in your "SetTimerEx" function (it works on publics too) and then call "Callback_Call" (using some of RyDeR`'s code to pass variable parameters) in your public timer function, having saved just the "E_CALLBACK_DATA" structure in your global array. Then dispose of the structure ("Callback_Destroy" or something, I forget) in "KillTimer" or if the timer is non-repeating - interestingly this will mean that you will, with no extra effort, support inline timers.
May I ask why you think this code doesn't do what I think it does? It's based off ZeeX' CPF function. It is actually working fine without problems so far, can't really see anything wrong except the part where I clear the stack. It should be like this:
pawn Код:
for(iArgs = (iArgs >> 2) + 1; iArgs--; )
Reply


Messages In This Thread
Timer Fix (seamlessly makes SetTimer/SetTimerEx very accurate) - by Slice - 12.10.2011, 16:18
Respuesta: Timer Fix (seamlessly makes SetTimer very accurate) - by SuperMarioRol - 12.10.2011, 16:20
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by IstuntmanI - 12.10.2011, 16:21
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by rbN. - 12.10.2011, 16:37
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Killa[DGZ] - 12.10.2011, 16:37
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Stigg - 12.10.2011, 16:44
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by OKStyle - 12.10.2011, 16:57
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 12.10.2011, 16:58
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by RyDeR` - 12.10.2011, 17:31
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Hiddos - 12.10.2011, 17:33
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 12.10.2011, 18:24
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by OKStyle - 12.10.2011, 18:48
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 12.10.2011, 18:56
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by wups - 12.10.2011, 19:00
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 12.10.2011, 19:15
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by wups - 12.10.2011, 19:19
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 12.10.2011, 19:36
Re : Timer Fix (seamlessly makes SetTimer very accurate) - by Naruto_Emilio - 12.10.2011, 19:51
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by [M.A]Angel[M.A] - 12.10.2011, 19:53
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 12.10.2011, 19:59
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by iPLEOMAX - 12.10.2011, 20:04
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by TheArcher - 12.10.2011, 20:16
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Deskoft - 13.10.2011, 01:19
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by CyNiC - 13.10.2011, 01:31
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Lorenc_ - 13.10.2011, 08:48
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by RyDeR` - 13.10.2011, 10:25
AW: Timer Fix (seamlessly makes SetTimer very accurate) - by Pablo Borsellino - 13.10.2011, 10:31
Re : Timer Fix (seamlessly makes SetTimer very accurate) - by TheBest6 - 13.10.2011, 11:49
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Lorenc_ - 06.11.2011, 08:58
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 06.11.2011, 09:38
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Lookin - 06.11.2011, 11:48
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by LZLo - 06.11.2011, 20:23
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Sascha - 06.11.2011, 20:51
Respuesta: Timer Fix (seamlessly makes SetTimer very accurate) - by Donuts - 07.11.2011, 19:14
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by ViniBorn - 07.11.2011, 19:49
AW: Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Littl3j0hNy - 13.11.2011, 23:19
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Lorenc_ - 14.11.2011, 06:55
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 14.11.2011, 07:13
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by juraska - 13.12.2011, 14:12
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by BaubaS - 13.12.2011, 14:16
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Ballu Miaa - 01.03.2012, 17:47
Re: Timer Fix (seamlessly makes SetTimer/SetTimerEx very accurate) - by Slice - 01.03.2012, 18:02
Re: Timer Fix (seamlessly makes SetTimer/SetTimerEx very accurate) - by Ballu Miaa - 01.03.2012, 18:24
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 01.03.2012, 18:27
Respuesta: Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Vladeksh - 01.03.2012, 20:31
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 02.03.2012, 07:29
Respuesta: Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Vladeksh - 04.03.2012, 17:11
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by milanosie - 04.03.2012, 18:08
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by clavador - 04.03.2012, 18:11
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 04.03.2012, 18:16
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by vyper - 20.04.2012, 14:24
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Y_Less - 20.04.2012, 14:40
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by vyper - 20.04.2012, 16:16
Respuesta: Timer Fix (seamlessly makes SetTimer very accurate) - by Francis. - 21.04.2012, 08:47
Re: Respuesta: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 21.04.2012, 09:11
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Patrik356b - 09.06.2012, 16:58
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by nescha - 10.06.2012, 13:06
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by ajwar - 13.06.2012, 12:41
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Slice - 13.06.2012, 12:50
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by MP2 - 23.06.2012, 16:41
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by d0nTtoucH - 21.11.2013, 21:03
Respuesta: Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Malganys - 21.11.2013, 22:39
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by vannesenn - 25.05.2014, 16:08
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by iRaiDeN - 25.05.2014, 16:20
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by 0x41726d79 - 26.10.2014, 09:58
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by TitanZ - 23.01.2016, 06:11
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Crayder - 23.01.2016, 06:30
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Shravan859 - 05.01.2018, 12:34
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Geebrox - 15.01.2018, 22:15
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by PepsiCola23 - 28.01.2018, 12:41
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by brayancamaroes - 04.01.2019, 22:38
Re: Timer Fix (seamlessly makes SetTimer very accurate) - by Banditul18 - 04.01.2019, 22:50

Forum Jump:


Users browsing this thread: 1 Guest(s)