[Plugin] Pawn.RakNet

I'm trying to get "vehicles informations" by using this plugin.
This code result some crazy outputs, ahah. Only the vehicle's id and model id is valid.
Any tips? I'm still learning how to use this plugin.
PHP код:
hook OnOutcomingRPC(playeridrpcidBitStream:bs)
{
    if(
rpcid == 164)
    {
        new 
Float:x,
            
Float:y,
            
Float:z,
            
Float:angle,
            
vehicleid,
            
modelid,
            
respawn_time,
            
color1,
            
color2,
            
siren;
        
BS_ReadValue(bs
            
PR_UINT16vehicleid,
            
PR_UINT16modelid,
            
PR_FLOATx,
            
PR_FLOATy,
            
PR_FLOATz,
            
PR_FLOATangle,
            
PR_UINT16respawn_time,
            
PR_UINT16siren,
            
PR_UINT16color1,
            
PR_UINT16color2);
        
BS_ResetReadPointer(bs);
        
SCMF(playerid, -1"%i & %i & %f & %f & %f & %f & %i & %i & %i & %i"vehicleid,
            
modelid,
            
x,
            
y,
            
z,
            
angle,
            
respawn_time,
            
siren,
            
color1,
            
color2);
        
    }
    return 
Y_HOOKS_CONTINUE_RETURN_1;

Код:
[14:48:16] 1 & 411 & 0.000000 & 1826781696.000000 & 0.000000 & 0.000000 & 16069 & 257 & 20480 & 18243
[14:48:16] 2 & 560 & -0.000000 & -0.000000 & -0.000000 & 0.000000 & 16069 & 1027 & 16384 & 17692
[14:48:16] 3 & 416 & -0.000000 & 0.000000 & 0.000000 & 898666432.000000 & 17331 & 27181 & 32768 & 17595
[14:48:16] 4 & 411 & 0.000000 & 0.000000 & 0.000000 & 0.000000 & 16069 & 3946 & 16384 & 17948
[14:48:16] 5 & 411 & 1073741824.000000 & 0.000000 & 0.000000 & -0.000000 & 16671 & 0 & 32768 & 17595
[14:48:16] 6 & 411 & 964689920.000000 & 7398010.000000 & 0.438015 & -0.000000 & 17307 & 15765 & 32768 & 17595
[14:48:16] 7 & 411 & -0.000000 & 0.000000 & 8.391489 & 2.410292 & 16892 & 11140 & 0 & 17530
[14:48:16] 8 & 411 & -0.000000 & 0.000000 & 1.384874 & 0.000000 & 17326 & 9799 & 32768 & 17595
[14:48:16] 9 & 489 & 0.000000 & -0.000000 & -..*0.-,.,.000000 & 0.000000 & 17300 & 22317 & 32768 & 17595
[14:48:16] 10 & 490 & 0.000000 & 0.000000 & -0.000000 & 0.000000 & 17271 & 36176 & 32768 & 17595
[14:48:16] 11 & 490 & -14720.000000 & -0.000000 & -0.000000 & 0.000000 & 17311 & 5703 & 32768 & 17595
[14:48:16] 12 & 490 & -503808.000000 & -107882384.000000 & -0.000000 & -+''*-(+.(.000000 & 17123 & 31323 & 32768 & 17595
[14:48:16] 13 & 490 & ./,),(-*,(.000000 & 0.000000 & -0.000000 & -395793.906250 & 17035 & 10586 & 32768 & 17595
[14:48:16] 14 & 487 & -0.000000 & 0.000000 & -0.000000 & -0.000000 & 17326 & 35 & 32768 & 17595
[14:48:16] 15 & 520 & 0.000000 & 0.000000 & 0.000000 & 0.000000 & 17290 & 24143 & 16384 & 17948
[14:48:16] 16 & 551 & 0.000000 & -0.000000 & 0.000000 & -0.000000 & 17260 & 21552 & 32768 & 17595
EDIT: Plus, what integer type I should put for retrieved or writing data? How can I know that?
Reply


Messages In This Thread
Pawn.RakNet - by YourShadow - 31.08.2017, 17:02
Re: Pawn.RakNet - write the best anticheat - by povargek - 31.08.2017, 17:11
Re: Pawn.RakNet - write the best anticheat - by SoNikMells - 31.08.2017, 17:38
Re: Pawn.RakNet - write the best anticheat - by Salik - 31.08.2017, 18:05
Re: Pawn.RakNet - write the best anticheat - by coool - 01.09.2017, 17:55
Re: Pawn.RakNet - write the best anticheat - by Unrea1 - 01.09.2017, 18:58
Re: Pawn.RakNet - write the best anticheat - by Mauzen - 01.09.2017, 19:39
Re: Pawn.RakNet - write the best anticheat - by Xeon™ - 01.09.2017, 20:29
Re: Pawn.RakNet - write the best anticheat - by coool - 03.09.2017, 14:59
Re: Pawn.RakNet - write the best anticheat - by asri - 03.09.2017, 15:10
Re: Pawn.RakNet - write the best anticheat - by Crystallize - 03.09.2017, 16:38
Re: Pawn.RakNet - write the best anticheat - by Hansrutger - 03.09.2017, 19:27
Re: Pawn.RakNet - write the best anticheat - by Paulice - 03.09.2017, 21:04
Re: Pawn.RakNet - write the best anticheat - by Whitetiger - 04.09.2017, 01:35
Re: Pawn.RakNet - write the best anticheat - by Mauzen - 04.09.2017, 04:36
Re: Pawn.RakNet - write the best anticheat - by Romz - 04.09.2017, 05:02
Re: Pawn.RakNet - write the best anticheat - by kurta999 - 04.09.2017, 06:16
Re: Pawn.RakNet - write the best anticheat - by Damager - 04.09.2017, 14:51
Re: Pawn.RakNet - write the best anticheat - by YouHack - 06.09.2017, 20:03
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 09.09.2017, 18:03
Re: Pawn.RakNet - write the best anticheat - by CodeStyle175 - 09.09.2017, 19:59
Re: Pawn.RakNet - write the best anticheat - by jlalt - 10.09.2017, 11:02
Re: Pawn.RakNet - write the best anticheat - by Eoussama - 10.09.2017, 12:25
Re: Pawn.RakNet - write the best anticheat - by Develerux - 10.09.2017, 19:13
Re: Pawn.RakNet - write the best anticheat - by kristo - 11.09.2017, 15:49
Re: Pawn.RakNet - write the best anticheat - by Djole1337 - 11.09.2017, 16:13
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 11.09.2017, 17:04
Re: Pawn.RakNet - write the best anticheat - by kristo - 11.09.2017, 21:43
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 12.09.2017, 16:55
Re: Pawn.RakNet - write the best anticheat - by Zeth - 12.09.2017, 18:08
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 13.09.2017, 17:19
Respuesta: Pawn.RakNet - write the best anticheat - by adri1 - 14.09.2017, 16:25
Re: Respuesta: Pawn.RakNet - write the best anticheat - by YourShadow - 14.09.2017, 18:08
Respuesta: Pawn.RakNet - write the best anticheat - by Fpwn - 15.09.2017, 02:33
Re: Respuesta: Pawn.RakNet - write the best anticheat - by Meller - 15.09.2017, 20:15
Re: Respuesta: Pawn.RakNet - write the best anticheat - by DTV - 15.09.2017, 20:30
Re: Pawn.RakNet - write the best anticheat - by kurta999 - 16.09.2017, 08:55
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 16.09.2017, 09:38
Re: Pawn.RakNet - write the best anticheat - by Aliassassin123456 - 16.09.2017, 12:19
Re: Pawn.RakNet - write the best anticheat - by povargek - 16.09.2017, 12:47
Re: Pawn.RakNet - write the best anticheat - by GuyYahood1 - 07.10.2017, 00:48
Re: Pawn.RakNet - write the best anticheat - by IlanZ - 08.10.2017, 13:41
Re: Pawn.RakNet - write the best anticheat - by KoloradO - 11.10.2017, 17:20
Re: Pawn.RakNet - write the best anticheat - by sammp - 12.10.2017, 05:09
Re: Pawn.RakNet - write the best anticheat - by Kraeror - 12.10.2017, 12:07
Re: Pawn.RakNet - write the best anticheat - by KoloradO - 12.10.2017, 14:38
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 14.10.2017, 15:05
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 14.10.2017, 15:24
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 14.10.2017, 15:26
Re: Pawn.RakNet - write the best anticheat - by Max_Andolini - 14.10.2017, 15:45
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 14.10.2017, 15:52
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 14.10.2017, 17:01
Re: Pawn.RakNet - write the best anticheat - by GuyYahood1 - 15.10.2017, 03:46
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 15.10.2017, 15:17
Re: Pawn.RakNet - write the best anticheat - by CodeStyle175 - 15.10.2017, 17:54
Re: Pawn.RakNet - write the best anticheat - by Fratello - 15.10.2017, 18:41
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 16.10.2017, 01:52
Re: Pawn.RakNet - write the best anticheat - by CodeStyle175 - 16.10.2017, 04:37
Re: Pawn.RakNet - write the best anticheat - by Abagail - 16.10.2017, 04:51
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 16.10.2017, 14:23
Re: Pawn.RakNet - write the best anticheat - by KoloradO - 16.10.2017, 19:22
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 16.10.2017, 20:34
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 16.10.2017, 20:54
Re: Pawn.RakNet - write the best anticheat - by CodeStyle175 - 16.10.2017, 21:10
Re: Pawn.RakNet - write the best anticheat - by PT - 18.10.2017, 20:40
Re: Pawn.RakNet - write the best anticheat - by Pottus - 20.10.2017, 00:27
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 20.10.2017, 12:56
Re: Pawn.RakNet - write the best anticheat - by Dayrion - 20.10.2017, 14:38
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 20.10.2017, 15:20
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 20.10.2017, 18:12
Re: Pawn.RakNet - write the best anticheat - by Spmn - 20.10.2017, 19:25
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 20.10.2017, 19:37
Re: Pawn.RakNet - write the best anticheat - by KoloradO - 20.10.2017, 21:32
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 21.10.2017, 04:09
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 21.10.2017, 04:26
Re: Pawn.RakNet - write the best anticheat - by Spmn - 21.10.2017, 06:47
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 21.10.2017, 06:51
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 21.10.2017, 07:11
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 21.10.2017, 07:44
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 21.10.2017, 07:57
Re: Pawn.RakNet - write the best anticheat - by Mcc - 22.10.2017, 09:56
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 22.10.2017, 14:02
Re: Pawn.RakNet - write the best anticheat - by HydraHumza - 22.10.2017, 18:49
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 23.10.2017, 16:21
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 23.10.2017, 16:29
Re: Pawn.RakNet - write the best anticheat - by Konstantinos - 23.10.2017, 16:52
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 23.10.2017, 16:56
Re: Pawn.RakNet - write the best anticheat - by Konstantinos - 23.10.2017, 17:11
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 23.10.2017, 18:05
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 23.10.2017, 18:43
Re: Pawn.RakNet - write the best anticheat - by Evocator - 23.10.2017, 18:59
Re: Pawn.RakNet - write the best anticheat - by Konstantinos - 23.10.2017, 19:32
Re: Pawn.RakNet - write the best anticheat - by IvanElistratov - 24.10.2017, 13:59
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 24.10.2017, 14:30
Re: Pawn.RakNet - write the best anticheat - by KoloradO - 27.10.2017, 00:11
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 27.10.2017, 07:19
Re: Pawn.RakNet - write the best anticheat - by KoloradO - 27.10.2017, 10:15
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 27.10.2017, 10:57
Re: Pawn.RakNet - write the best anticheat - by GuyYahood1 - 28.10.2017, 07:59
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 28.10.2017, 08:02
Re: Pawn.RakNet - write the best anticheat - by KoloradO - 28.10.2017, 22:01
Re: Pawn.RakNet - write the best anticheat - by Jelly23 - 29.10.2017, 04:17
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 29.10.2017, 08:27
Re: Pawn.RakNet - write the best anticheat - by DimaShift - 29.10.2017, 09:15
Re: Pawn.RakNet - write the best anticheat - by Dignity - 16.11.2017, 07:14
Re: Pawn.RakNet - write the best anticheat - by YourShadow - 16.11.2017, 15:57
Re: Pawn.RakNet - write the best anticheat - by Splav - 07.12.2017, 08:23
Re: Pawn.RakNet - write the best anticheat - by Graber - 08.12.2017, 18:08
Re: Pawn.RakNet - write the best anticheat - by DeViLsS - 22.12.2017, 07:58
Re: Pawn.RakNet - write the best anticheat - by zsoolt997 - 02.01.2018, 22:22
Re: Pawn.RakNet - write the best anticheat - by Jelly23 - 02.01.2018, 22:32
Re: Pawn.RakNet - write the best anticheat - by zsoolt997 - 02.01.2018, 22:38
Re: Pawn.RakNet - write the best anticheat - by NaS - 06.01.2018, 15:00
Re: Pawn.RakNet - write the best anticheat - by Pottus - 07.01.2018, 00:02
Re: Pawn.RakNet - by PawnoQ - 09.01.2018, 19:43
Re: Pawn.RakNet - by Jelly23 - 09.01.2018, 20:46
Re: Pawn.RakNet - by PawnoQ - 09.01.2018, 21:45
Re: Pawn.RakNet - by kurta999 - 10.01.2018, 08:56
Re: Pawn.RakNet - by Dayrion - 12.01.2018, 12:56
Re: Pawn.RakNet - by Jelly23 - 12.01.2018, 13:46
Re: Pawn.RakNet - by Dayrion - 13.01.2018, 06:14
Re: Pawn.RakNet - by Jelly23 - 13.01.2018, 07:03
Re: Pawn.RakNet - by Smith. - 15.01.2018, 01:14
Re: Pawn.RakNet - by Jelly23 - 15.01.2018, 01:16
Re: Pawn.RakNet - by Smith. - 15.01.2018, 01:33
Re: Pawn.RakNet - by Infra - 15.01.2018, 18:34
Re: Pawn.RakNet - by Kaperstone - 15.01.2018, 18:40
Re: Pawn.RakNet - by Infra - 15.01.2018, 18:43
Re: Pawn.RakNet - by Kaperstone - 15.01.2018, 18:56
Re: Pawn.RakNet - write the best anticheat - by B4dSh33p - 24.01.2018, 03:51
Re: Pawn.RakNet - write the best anticheat - by Kaperstone - 24.01.2018, 04:33
Re: Pawn.RakNet - by B4dSh33p - 24.01.2018, 05:11
Re: Pawn.RakNet - write the best anticheat - by zsoolt997 - 26.01.2018, 15:05
Re: Pawn.RakNet - by B4dSh33p - 03.02.2018, 21:41
Re: Pawn.RakNet - by Dayrion - 03.02.2018, 22:02
Re: Pawn.RakNet - by ZaHHak - 07.02.2018, 17:35
Re: Pawn.RakNet - by sniper-termit - 14.02.2018, 17:02
Re: Pawn.RakNet - by Chaser98 - 14.02.2018, 23:31
Re: Pawn.RakNet - by sniper-termit - 15.02.2018, 09:29
Re: Pawn.RakNet - write the best anticheat - by Chaprnks - 17.02.2018, 04:27
Re: Pawn.RakNet - by Spmn - 17.02.2018, 14:20
Re: Pawn.RakNet - by Splav - 17.02.2018, 14:33
Re: Pawn.RakNet - by Kaperstone - 17.02.2018, 16:25
Re: Pawn.RakNet - by ball - 26.02.2018, 16:33
Re: Pawn.RakNet - by Spmn - 26.02.2018, 18:47
Re: Pawn.RakNet - by ball - 27.02.2018, 09:00
Re: Pawn.RakNet - by Jelly23 - 10.03.2018, 13:45
Re: Pawn.RakNet - by YourShadow - 11.04.2018, 17:16
Re: Pawn.RakNet - by sampkinq - 11.04.2018, 17:26
Re: Pawn.RakNet - by AroseKhanNiazi - 13.04.2018, 12:47
Re: Pawn.RakNet - by narwn - 13.04.2018, 18:40
Re: Pawn.RakNet - by AroseKhanNiazi - 13.04.2018, 20:47
Re: Pawn.RakNet - by ball - 13.04.2018, 22:08
Re: Pawn.RakNet - by BrunoBM23 - 13.04.2018, 22:48
Re: Pawn.RakNet - by ball - 31.05.2018, 16:21
Re: Pawn.RakNet - by Jasno - 03.08.2018, 19:29
Re: Pawn.RakNet - by Amagida - 08.12.2018, 16:35
Re: Pawn.RakNet - by Jefff - 13.12.2018, 01:12
Re: Pawn.RakNet - by makarevich - 28.12.2018, 04:11
Re: Pawn.RakNet - by YourShadow - 25.02.2019, 14:31
Re: Pawn.RakNet - by iorp - 22.03.2019, 06:54
Re: Pawn.RakNet - by YourShadow - 22.03.2019, 18:24
Re: Pawn.RakNet - by iorp - 24.03.2019, 16:04

Forum Jump:


Users browsing this thread: 9 Guest(s)