SA-MP Forums Archive
[FilterScript] [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] (/showthread.php?tid=19819)

Pages: 1 2 3 4 5


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Toyotaspeed - 07.11.2008

I try to compile the filterscript but I get this error:

Code:
C:\Users\Toyotaspeed\Documents\GTA\samp022server.win32\filterscripts\ladmin2.pwn(2) : fatal error 100: cannot read from file: "dutils"

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
I'm unable to load the amx when I start the samp-server.exe

Any halp?


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CM - [NBG]XxXkranXxX - 07.11.2008

You need the dutils include


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CM - III YoUnG III - 08.11.2008

Quote:
Originally Posted by [NBG
XxXkranXxX ]
You need the dutils include
Yea put the Dutils include in the includes folder, and also, if you have already done this and the error comes up, Im guessing from the error that it is corrupted, so I would reccomend re-downloading it


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - robanswe - 22.11.2008

I have some bad news for ladmin... The new sa-mp update 0.2x isent working whits ladmin some things work but NOT the car spawn system its says here is you new car but no car apers... the second bug is "info" dosent work in the "server cmd" pls fix this I relly love this admin script... Sorry for my bad english!

EDIT:

Some bug in my server was the reason to the problem sorry


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Nyhm - 30.11.2008

hey i got a problem -.-...
if i wanna put Ladmin into LVRCR
it says i n2 login 2x...
and the Commands wont work either coz if i do /lcmds Wont work :S Can someone help me solve this problem?
Thx


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Daan de Vries - 25.10.2009

Really nice script, I'm using it.

One question though, how can I prevent players from getting kicked when they have a minigun and/or jetpack?


EDIT:

**NVM: It wasn't that script**



Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - skaf_ - 29.10.2009

Why when i type /kick or /ban it says i'm not an admin, when i put my level to 5.
and it never saves where i log out at, it pretty much never saves anything.
alot of the commands work.
anybody know whats the problem?


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CM - cigale - 29.10.2009

on 0.3 /crash and /pm
and hydraulic are not working
and weather is changing very slow


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - ded - 29.10.2009

This script needs updating for 0.3 .. if you can't do it yourself ... ask somebody in the script request thread.


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - blacksystem - 30.10.2009

hi.. i want implement a function with ur admin script.. i'm not really able.. so i'm there to ask help..

i want made a function, where i can give one weapon with some ammo to all players, then it will be send a message to a player to inform to that.. this function it will be enabled only for admins obv.. if possible level 3..

i'm not good at pawn.. so i'm there to ask help..

how to do that?


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - blacksystem - 31.10.2009

how to make new command GM that work with levels by this script?

i wanna make a command in the gm that can be used only by admins (leveled by ladmin)..

now i've only successfully created a functionally rcon commands.. but i wont give all admins my rcon password.. so how to make this?


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - BP13 - 31.10.2009

Code:
#include <IsPlayerLAdmin>
Example command:

Code:
dcmd_testing(playerid,params[])
{
  #pragma unused params
	if(IsPlayerLAdmin(playerid))
 	{
    	SendClientMessage(playerid, 0xFF0000AA, "Tested");
    	//Use any function you want here
    	
    	//This is setup for DCMD if you use strcmp use the same top part
    	//of the strcmp command layout
	}
	return 1;



Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - blacksystem - 31.10.2009

Code:
  if (strcmp("/command", cmdtext, true)==0)
	  {
     if(IsPlayerLAdmin(playerid))
     {
     command
     }
     else
     {
  	  command
     return 1;
		 }
  }
i tryed with this but it wont work..

when i type the command on server it says: unknown command

--EDIT--

ok now it work with this code..

Code:
  if (strcmp("/command", cmdtext, true)==0)
  {
    if(IsPlayerLAdmin(playerid))
	  {
     command
     return 1;
 	  }
	  else
	  {
	  command
	}
  }
i got just one error.. all players can use it.. how to fix only for admins?


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - BP13 - 31.10.2009

Code:
if (strcmp("/command", cmdtext, true)==0)
{
 	if(IsPlayerLAdmin(playerid))
	{
		//Thing you want to do here and no don't put a return after the command here.
	}
	else SendClientMessage(playerid, 0xFF0000AA, "You are not a admin");
	return 1;
}
I even tested this and it works.

Example:

Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/command", cmdtext, true)==0)
	{
 		if(IsPlayerLAdmin(playerid))
		{
			SendClientMessage(playerid, 0xFF0000AA, "You are a admin");
		}
		else SendClientMessage(playerid, 0xFF0000AA, "You are not a admin");
		return 1;
	}
	return 0;
}



Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - RyDeR` - 31.10.2009

Nice admin script


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - GangsTa_ - 10.07.2010

It\'s fucking awesome!


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Ludek - 16.07.2010

Please download the fix.


thank you


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Zinc - 17.07.2010

Please fix link of v4 and others.


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Najkz - 24.10.2010

why accounts are bugged you join the server it says you must register /register [password] .. and /login idk what else and when i do /register or /login it says you are alredy Registered and Logged in and still saying you must register with yellow letters .. anyone can help me please ?


Re: [FS] >> L Admin 4 - Adminscript << [stats/weap/place saving | Over 150 CMDS] - Hudgens - 31.12.2010

I suppose you have to add a new line

Code:
forward OnPlayerPrivmsg