[FilterScript] GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only)
#95

Quote:
Originally Posted by billy1337samp
View Post
original:
PHP Code:
CMD:god(playerid)
{
    if (!
IsPlayerAdmin(playerid) && p_Account[playerid][E_ACCOUNT_ADMIN_LEVEL] < 1)
        return 
SendClientMessage(playeridCOLOR_TOMATO"Error: Only admin level 1 and above have access to this command.");
    if (!
p_Data[playerid][E_PDATA_GODMODE])
    {
        
SetPlayerHealth(playeridFLOAT_INFINITY);
        
GameTextForPlayer(playerid"~g~Godmode on"50003);
    }
    else
    {
        
SetPlayerHealth(playerid100.0);
        
GameTextForPlayer(playerid"~r~Godmode off"50003);
    }
    
p_Data[playerid][E_PDATA_GODMODE] = !p_Data[playerid][E_PDATA_GODMODE];
    
PlayerPlaySound(playerid10570.00.00.0);
    return 
1;

I don't know why but some admins may want to do the way I want to... If admin health = 20.00 and does /god then /god off, then their health will be 100.00. If you want the admins health to return back to 20.00 (or whatever amount it was) then use this where it says CMD:god(playerid)
PHP Code:
CMD:god(playerid)
{
    new 
Float:oldHealth[MAX_PLAYERS];
    if (!
IsPlayerAdmin(playerid) && p_Account[playerid][E_ACCOUNT_ADMIN_LEVEL] < 1)
        return 
SendClientMessage(playeridCOLOR_TOMATO"Error: Only admin level 1 and above have access to this command.");
    if (!
p_Data[playerid][E_PDATA_GODMODE])
    {
        
GetPlayerHealth(playeridoldHealth[playerid]);
        
SetPlayerHealth(playeridFLOAT_INFINITY);
        
GameTextForPlayer(playerid"~g~Godmode on"50003);
    }
    else
    {
        
SetPlayerHealth(playeridoldHealth[playerid]);
        
GameTextForPlayer(playerid"~r~Godmode off"50003);
    }
    
p_Data[playerid][E_PDATA_GODMODE] = !p_Data[playerid][E_PDATA_GODMODE];
    
PlayerPlaySound(playerid10570.00.00.0);
    return 
1;

basically grabs player health before it gets INFINITE and then after god mode is off it returns original health.
This will actually kill when you yurn off godmode!
Either make the variable global or put "static FloatldHealth[MAX_PLAYERS];" instead of "new FloatldHealth[MAX_PLAYERS];"
Reply


Messages In This Thread
[MySQL/SQLite] GAdmin v2 - Optimized/User friendly/Plug'n'Play features/Up-to-date - by Gammix - 10.08.2015, 10:32
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by LazyB0y - 10.08.2015, 10:39
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Q_Lite - 10.08.2015, 12:25
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by xXitsgodzillaXx - 11.08.2015, 04:57
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 11.08.2015, 09:29
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SecretBoss - 12.08.2015, 16:28
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Tuntun - 13.08.2015, 14:30
Re : GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Dutheil - 13.08.2015, 14:44
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 13.08.2015, 14:58
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 15.08.2015, 02:50
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Qu3esL - 15.08.2015, 02:58
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Iceblizard - 15.08.2015, 06:43
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Excips - 18.08.2015, 08:55
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by fahlevy - 22.08.2015, 13:15
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 22.08.2015, 13:25
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by fahlevy - 22.08.2015, 13:34
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 22.08.2015, 13:40
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by fahlevy - 22.08.2015, 13:57
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 22.08.2015, 14:05
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by fahlevy - 22.08.2015, 14:58
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Michael B - 22.08.2015, 15:03
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by MichaelJones - 22.08.2015, 22:44
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 23.08.2015, 09:42
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jmrz96 - 23.08.2015, 15:35
Re : GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Trable - 28.08.2015, 01:58
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Cassy_ - 09.09.2015, 16:07
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SecretBoss - 10.09.2015, 07:02
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 11.09.2015, 06:44
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by jamesmith12 - 11.09.2015, 06:52
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 12.09.2015, 01:09
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SecretBoss - 12.09.2015, 12:41
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 12.09.2015, 13:09
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SecretBoss - 12.09.2015, 13:29
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by AhmedElGaml - 13.09.2015, 15:02
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Crspy - 14.09.2015, 23:16
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jensenn - 15.09.2015, 19:20
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SecretBoss - 15.09.2015, 20:18
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jensenn - 15.09.2015, 21:16
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by fahlevy - 16.09.2015, 05:35
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 16.09.2015, 06:28
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jensenn - 16.09.2015, 21:14
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 17.09.2015, 00:49
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by fahlevy - 17.09.2015, 03:47
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jensenn - 17.09.2015, 14:03
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Excips - 07.10.2015, 14:31
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 15.10.2015, 11:54
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by AlexandreAymanito - 15.10.2015, 12:12
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by jlalt - 15.10.2015, 12:15
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SecretBoss - 15.10.2015, 12:28
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by AnthonyDaBestt - 23.11.2015, 15:47
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SpikY_ - 13.12.2015, 10:00
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 14.12.2015, 01:42
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 16.01.2016, 22:29
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Bolex_ - 17.01.2016, 11:53
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by F1N4L - 17.01.2016, 19:24
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 17.01.2016, 19:46
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by F1N4L - 17.01.2016, 20:31
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SpikY_ - 18.01.2016, 15:49
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 18.01.2016, 16:58
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by markparker12 - 19.01.2016, 13:21
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by xiaoniao - 22.01.2016, 17:45
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 22.01.2016, 20:41
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by JamalMaddox - 29.03.2016, 21:44
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 29.03.2016, 21:50
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by JamalMaddox - 29.03.2016, 21:54
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by feheristi97 - 30.03.2016, 02:41
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 30.03.2016, 03:37
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by kairos - 30.03.2016, 07:59
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Kaperstone - 30.03.2016, 09:23
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by feheristi97 - 08.07.2016, 06:05
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 11.08.2016, 23:48
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by XtremeR - 12.08.2016, 03:58
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 23.08.2016, 16:30
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by donhu789 - 26.08.2016, 09:36
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 26.08.2016, 13:46
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by JaKe Elite - 02.09.2016, 11:00
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by TheRealMan - 02.09.2016, 11:03
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by MysteriousGuy - 09.09.2016, 15:33
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 09.09.2016, 16:03
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by KaisAggarwal - 09.09.2016, 22:15
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Kalashnecov - 07.03.2017, 12:21
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by iTzFireShark420 - 15.03.2017, 01:15
Respuesta: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Kaneki14 - 17.03.2017, 05:14
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 17.03.2017, 05:32
Respuesta: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Kaneki14 - 18.03.2017, 03:47
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by dopeboy1040 - 09.05.2017, 15:13
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by dopeboy1040 - 09.05.2017, 15:15
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by dopeboy1040 - 09.05.2017, 16:34
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by dopeboy1040 - 09.05.2017, 16:36
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by MetalBeard - 10.07.2017, 08:37
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Wazowski - 20.07.2017, 10:46
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by KratosRoG - 22.11.2017, 07:54
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Ritzy - 22.11.2017, 08:21
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by billy1337samp - 22.11.2017, 20:01
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 22.11.2017, 22:10
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by KratosRoG - 23.11.2017, 06:02
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Ritzy - 23.11.2017, 06:25
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 23.11.2017, 06:44
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Ritzy - 23.11.2017, 06:46
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by billy1337samp - 23.11.2017, 07:32
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jokers98s - 06.12.2017, 13:09
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jokers98s - 06.12.2017, 15:24
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Jokers98s - 07.12.2017, 16:54
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Xeon™ - 10.12.2017, 18:39
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by SquirrelLSRP - 10.12.2017, 22:04
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by GameOvr - 06.07.2018, 04:33
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by DeXXter00 - 12.07.2018, 03:08
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by DeXXter00 - 12.07.2018, 03:10
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by DeXXter00 - 12.07.2018, 04:35
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by JuWo - 13.09.2018, 14:29
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by RatDimo - 09.10.2018, 09:38
Re: GAdmin v2 - Integrated form with many new features (0.3.7 R2-1+ only) - by Gammix - 09.10.2018, 19:05

Forum Jump:


Users browsing this thread: 3 Guest(s)