[Plugin] Pawn.RakNet

PHP код:
//RPCs
#define RPC_ServerJoin (137)
#define RPC_ServerQuit (138)
ShowPlayerOnScoreBoard(playeridtoplayeridbool:show)
{
    if(!
IsPlayerConnected(playerid) || !IsPlayerConnected(toplayerid)) return 0;
    
    new 
BitStream:bs BS_New(), name[MAX_PLAYER_NAME];
    
    
BS_WriteValue(
        
bs,
        
PR_UINT16playerid,
        
PR_UINT81
    
);
    
BS_RPC(bstoplayeridRPC_ServerQuit);
    
BS_Reset(bs);
    
    
GetPlayerName(playeridnamesizeof(name));
    
    
BS_WriteValue(
        
bs,
        
PR_UINT16playerid,
        
PR_INT320,
        
PR_UINT8, !show,
        
PR_UINT8strlen(name),
        
PR_STRINGname
    
);
    
    
BS_RPC(bstoplayeridRPC_ServerJoin);
    
BS_Delete(bs);
    return 
1;

Function snippet. This will show/hide a player from score-board (In-Game) by adding them back as a NPC for 'toplayerid'.

Take into account that hidden players will have their name tags removed for 'toplayerid', that is because they are added back as NPCs. Other than that, everything works fine.
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: 1 Guest(s)