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

Seems to be a decent administration system. Good job dude!
Reply
#22

Nice one
Reply
#23

I just compiled and found no errors with the latest plugins and includes.

Proof:
Reply
#24

Do you can upload again GAdminv2 full package Filedropper?
Reply
#25

great job. Thanks!
Reply
#26

Amazing, but I am having problem with few commands like / giveallweapon. I think the problem is with sscanf plugin, with sscanf2 it was working fine but not with latest version.
Reply
#27

My server crashes when I am using some specific commands, like /veh, /pm /reply and some other i didn't test yet

Also /changename command is bugged, it changes your name but if you join with your old name you have the same stats with your name

I hope you fix all them in your next version, thanks for reading


Quote:
Originally Posted by Cassy_
Посмотреть сообщение
Amazing, but I am having problem with few commands like / giveallweapon. I think the problem is with sscanf plugin, with sscanf2 it was working fine but not with latest version.
Try changing your sscanf include and plugins
Reply
#28

Update GAdminv2_2 (version 2.2):
  • Complete scripted BAN system (temp ban, permanent ban, offline ban, ip ban, range ban)
  • New advance range ban (works on cidr's)
  • Fixes /changename
  • Adds new command for searching registered users in the userdatabase in game via /search or /searchuser
  • New spectate textdraws (update after every 1 second)
  • New table for range bans "rangebanse"
  • Improved BAN system (overall)
  • Added some screen shots
Download: http://www.solidfiles.com/d/bc8511fdc8/ (see the thread for other options and links)
Reply
#29

Cool ! nice update bro +1rep
Reply
#30

Quote:
Originally Posted by Alcag
Посмотреть сообщение
Full Package is bugged win rar to desktop non working
I have re-uploaded the rar file (.7z), check it out.

Quote:
Originally Posted by PT
Посмотреть сообщение
Gammix you forgot something like this:

PHP код:
public OnPlayerInteriorChange(playeridnewinterioridoldinteriorid)
{
    
LOOP_PLAYERS(i)
    {
        if(
IsPlayerSpectating(i))
        {
            if(
gUser[i][u_specid] == playerid)
            {
                
SetPlayerSpectating(iplayerid);
            }
        }
    }
    return 
1;

and to the Virtual World too.
Right, thanks.

Update 2.3.2: (minor update/addon)
  • Adds support for virtual world and interior changes while spectating
  • Added option to disable anti - spam and flood (in script settings)
Download links updated.
Reply
#31

Код:
GAdminv(2 - 2.3.2) - Source files	GITHUB - .pwn and .inc
GAdminv2_3.7z - Full package (please do update the plugins and includes as time passes)	Solidfiles
That 2 files have the same version of the script? I can't understand lol
Reply
#32

Quote:
Originally Posted by SecretBoss
Посмотреть сообщение
Код:
GAdminv(2 - 2.3.2) - Source files	GITHUB - .pwn and .inc
GAdminv2_3.7z - Full package (please do update the plugins and includes as time passes)	Solidfiles
That 2 files have the same version of the script? I can't understand lol
No the github one has 2.3.2 but the Full pack is 2.3.1. The difference is very minor, 2.3.2 has option to disable anti flood and spam but 2.3.1 don't.
Reply
#33

Quote:
Originally Posted by Gammix
Посмотреть сообщение
No the github one has 2.3.2 but the Full pack is 2.3.1. The difference is very minor, 2.3.2 has option to disable anti flood and spam but 2.3.1 don't.
I don't care a lot of it, anyway thanks for all Gammix you are really amazing, I love new spectate textdraws and AKA system you may add serial number ban on your next update
Reply
#34

It's awesome
+Rep
Reply
#35

one of the most important Filter Scripts in samp
Reply
#36

Quote:

if(time > 5*60 || time < 10) return SendClientMessage(playerid, COLOR_RED, "HATA:"WHITE" Hapis sьresi 10 - 300 dakika arası olmalıdır.");

Help me pls, how can i make it in minutes? jail time. Sorry my bad english ^_^
Reply
#37

Quote:
Originally Posted by Jensenn
Посмотреть сообщение
Help me pls, how can i make it in minutes? jail time. Sorry my bad english ^_^
1st what you want to make
2nd post all the code
Reply
#38

Quote:
Originally Posted by SecretBoss
Посмотреть сообщение
1st what you want to make
2nd post all the code
Код:
CMD:hapiseat(playerid, params[])
{
	//check if the player is a admin
	LevelCheck(playerid, 2);

	new target, time, reason[128];
	if(sscanf(params, "uI(60)S(No reason specified)[128]", target, time, reason)) return SendClientMessage(playerid, COLOR_THISTLE, "KULLANIM: "WHITE"/hapiseat [isim/ID] [dakika] [sebep]");

	if(! IsPlayerConnected(target)) return SendClientMessage(playerid, COLOR_RED, "HATA:"WHITE" Geзersiz oyuncu.");

	if(GetPlayerGAdminLevel(playerid) < GetPlayerGAdminLevel(target)) return SendClientMessage(playerid, COLOR_RED, "HATA: Kendinden yьksek yцneticiye bu komutu kullanamazsın.");

	if(time > 5*60 || time < 10) return SendClientMessage(playerid, COLOR_RED, "HATA:"WHITE" Hapis sьresi 10 - 300 dakika arası olmalıdır.");

	if(target == playerid) return SendClientMessage(playerid, COLOR_RED, "HATA:"WHITE" Kendini hapise atamazsın.");

	if(GetPVarType(target, "GAdmin_Jailed") != PLAYER_VARTYPE_NONE) return SendClientMessage(playerid, COLOR_RED, "HATA:"WHITE" Oyuncu zaten hapiste.");

	SetPVarInt(target, "GAdmin_Jailed", 1);

	gUser[target][u_jailtime] = time;
	JailPlayer(target);
	PlayerPlaySound(target, 1057, 0.0, 0.0, 0.0);
	PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);

	new string[144];
	format(string, sizeof(string), "SUNUCU:"WHITE" %s[%i] yцnetici %s[%i] tarafından %i dakika hapise atıldı, sebep: %s]", ReturnPlayerName(target), target, ReturnPlayerName(playerid), playerid, time, reason);
	SendClientMessageToAll(COLOR_SAMP_BLUE, string);
	format(string, sizeof(string), "~b~~h~~h~~h~Hapisten cikmana %i dakika var", time);
	GameTextForPlayer(target, string, 5000, 3);
	return 1;
}
I want to make min - sec
Reply
#39

hey guys. this FS wont work in updated plugin and include . ..
Reply
#40

Quote:
Originally Posted by fahlevy
Посмотреть сообщение
hey guys. this FS wont work in updated plugin and include . ..
This FS is only meant for the latest SAMP version i.e. 0.3.7 R2-1 which is the updated one. Where as the plugins, it works with both latest or a level low of upgraded plugins, Includes as well.

I doubt you have the latest versions, if so do compile it before running it.

@Jensenn: The jail time is already in minutes, i guess!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)