Raised This Month: $51 Target: $400
 12% 

Player menu


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
wtfaatp
Senior Member
Join Date: Jul 2010
Old 05-19-2014 , 18:21   Player menu
Reply With Quote #1

Any reason someone without admin wouldn't be able to use this command?

They are getting "You must wait 30 seconds before submitting another report."
and if they do
/report wtf hacking
they get
[SM] You cannot target this player.
[PR] No matching client was found.

Code:
#pragma semicolon 1

#include <sourcemod>
#include <sdktools>
#define PLUGIN_VERSION  "1.0"

public Plugin:myinfo = {
	name = "Player Report",
	author = "MasterOfTheXP. Fixed by hlmod.ru users",
	description = "Report players to admins.",
	version = PLUGIN_VERSION,
	url = "http://mstr.ca/"
};

new Target[MAXPLAYERS + 1];
new Float:LastUsedReport[MAXPLAYERS + 1];

new Handle:cvarDelay;

new String:configLines[256][192];
new lines;

public OnPluginStart()
{
	LoadTranslations("common.phrases");
	LoadTranslations("core.phrases");
	
	RegConsoleCmd("sm_report", Command_report);
	
	cvarDelay = CreateConVar("sm_playerreport_delay","30.0","Time, in seconds, to delay the target of sm_rocket's death.", FCVAR_NONE, true, 0.0);
}

public OnClientPutInServer(client)
{
	Target[client] = 0;
	LastUsedReport[client] = GetGameTime();
	for (new z = 1; z <= GetMaxClients(); z++)
	{
		if (Target[z] == client) Target[z] = 0;
	}
}

public Action:Command_report(client, args)
{
	if (LastUsedReport[client] + GetConVarFloat(cvarDelay) > GetGameTime())
	{
		ReplyToCommand(client, "[PR] You must wait %i seconds before submitting another report.", RoundFloat((LastUsedReport[client] + RoundFloat(GetConVarFloat(cvarDelay))) - RoundFloat(GetGameTime())));
		return Plugin_Handled;
	}
	if (args == 0) ChooseTargetMenu(client);
	else if (args == 1)
	{
		new String:arg1[128];
		GetCmdArg(1, arg1, 128);
		Target[client] = FindTarget(client, arg1, true, false);
		if (!IsValidClient(Target[client]))
		{
			ReplyToCommand(client, "[PR] %t", "No matching client");
			return Plugin_Handled;
		}
		ReasonMenu(client);
	}
	else if (args > 1)
	{
		new String:arg1[128], String:arg2[256];
		GetCmdArg(1, arg1, 128);
		GetCmdArgString(arg2, 256);
		ReplaceStringEx(arg2, 256, arg1, "");
		new target = FindTarget(client, arg1, true, false);
		if (!IsValidClient(target))
		{
			ReplyToCommand(client, "[PR] %t", "No matching client");
			return Plugin_Handled;
		}
		ReportPlayer(client, target, arg2);
	}
	return Plugin_Handled;
}

stock ReportPlayer(client, target, String:reason[])
{
	if (!IsValidClient(target))
	{
		PrintToChat(client, "[PR] The player you were going to report is no longer in-game.");
		return;
	}
	new String:configFile[PLATFORM_MAX_PATH];
	BuildPath(Path_SM, configFile, sizeof(configFile), "configs/playerreport_logs.txt");
	new Handle:file = OpenFile(configFile, "at+");
	new String:ID1[50], String:ID2[50], String:date[50], String:time[50];
	GetClientAuthString(client, ID1, 50);
	GetClientAuthString(target, ID2, 50);
	FormatTime(date, 50, "%m/%d/%Y");
	FormatTime(time, 50, "%H:%M:%S");
	WriteFileLine(file, "User: %N [%s]\nReported: %N [%s]\nDate: %s\nTime: %s\nReason: \"%s\"\n-------\n\n", client, ID1, target, ID2, date, time, reason);
	CloseHandle(file);
	PrintToChat(client, "[PR] Report submitted.");
	for (new z = 1; z <= GetMaxClients(); z++)
	{
		if (!IsValidClient(z)) continue;
		if (CheckCommandAccess(z, "sm_admin", ADMFLAG_ROOT, true))
		
		PrintToChat(z, "[PR] %N reported %N (Reason: \"%s\")", client, target, reason);
	}
	PrintToServer("[PR] %N reported %N (Reason: \"%s\")", client, target, reason);
	LastUsedReport[client] = GetGameTime();
}

ChooseTargetMenu(client)
{
	new Handle:smMenu = CreateMenu(ChooseTargetMenuHandler);
	SetGlobalTransTarget(client);
	new String:text[128];
	Format(text, 128, "Report player:", client);
	SetMenuTitle(smMenu, text);
	SetMenuExitBackButton(smMenu, false);
	SetMenuExitButton(smMenu, true);
	
	decl String:Name[128], String:UserID[5];
	for(new i = 1; i <= MaxClients; i++)
	{
		if(IsClientInGame(i) && i != client)
		{
			GetClientName(i, Name, sizeof(Name));
			IntToString(GetClientUserId(i), UserID, sizeof(UserID));
			AddMenuItem(smMenu, UserID, Name);
		}
	}
	
	DisplayMenu(smMenu, client, MENU_TIME_FOREVER);
}

public ChooseTargetMenuHandler(Handle:menu, MenuAction:action, client, param2)
{
	if (action == MenuAction_Select)
	{
		new String:info[32];
		new userid, target;
		
		GetMenuItem(menu, param2, info, sizeof(info));
		userid = StringToInt(info);

		if ((target = GetClientOfUserId(userid)) == 0) PrintToChat(client, "[PR] %t", "Player no longer available");
		else
		{
			if (client == target) ReplyToCommand(client, "[PR] Why would you report yourself?");
			else
			{
				Target[client] = target;
				ReasonMenu(client);
			}
		}
	}
}

ReasonMenu(client)
{
	new Handle:smMenu = CreateMenu(ReasonMenuHandler);
	SetGlobalTransTarget(client);
	new String:text[128];
	Format(text, 128, "Select reason:");
	SetMenuTitle(smMenu, text);
	lines = ReadConfig("playerreport_reasons");
	for (new z = 0; z <= lines - 1; z++)
	{
		AddMenuItem(smMenu, configLines[z], configLines[z]);
	}
	DisplayMenu(smMenu, client, MENU_TIME_FOREVER);
	return;
}

public ReasonMenuHandler(Handle:menu, MenuAction:action, client, item)
{
	if (action == MenuAction_Cancel && item == MenuCancel_ExitBack) CloseHandle(menu);
	if (action == MenuAction_Select)
	{
		new String:selection[128];
		GetMenuItem(menu, item, selection, 128);
		ReportPlayer(client, Target[client], selection);
	}
}

stock bool:IsValidClient(client)
{
	if (client <= 0 || client > MaxClients) return false;
	if (!IsClientInGame(client)) return false;
	if (IsClientSourceTV(client) || IsClientReplay(client)) return false;
	return true;
}

stock ReadConfig(String:configName[])
{
	new String:configFile[PLATFORM_MAX_PATH];
	new String:line[192];
	new i = 0;
	new totalLines = 0;
	
	BuildPath(Path_SM, configFile, sizeof(configFile), "configs/%s.txt", configName);
	
	new Handle:file = OpenFile(configFile, "rt");
	
	if(file != INVALID_HANDLE)
	{
		while (!IsEndOfFile(file))
		{
			if (!ReadFileLine(file, line, sizeof(line)))
				break;
			
			TrimString(line);
			if(strlen(line) > 0)
			{
				FormatEx(configLines[i], 192, "%s", line);
				totalLines++;
			}
			
			i++;
			
			if(i >= sizeof(configLines))
			{
				LogError("%s config contains too many entries!", configName);
				break;
			}
		}
				
		CloseHandle(file);
	}
	else LogError("[SM] ERROR: Config sourcemod/configs/%s.txt does not exist.", configName);
	
	return totalLines;
}

Edit: let is also be known my overrides look like this


Code:
Overrides
{
		"report"	""
		"sm_report"	"" 
}
__________________
SourceMod : 1.10.0 (Official) | MetaMod : 1.10.7 (Official)
Server : NFOservers - Windows

Last edited by wtfaatp; 05-19-2014 at 18:23.
wtfaatp is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 05-20-2014 , 07:12   Re: Player menu
Reply With Quote #2

try change
Code:
		Target[client] = FindTarget(client, arg1, true, false);
to
		Target[client] = FindTarget(0, arg1, true, false);
Bacardi is offline
wtfaatp
Senior Member
Join Date: Jul 2010
Old 05-21-2014 , 15:14   Re: Player menu
Reply With Quote #3

Thnx I lovers you
__________________
SourceMod : 1.10.0 (Official) | MetaMod : 1.10.7 (Official)
Server : NFOservers - Windows
wtfaatp is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 05-22-2014 , 04:53   Re: Player menu
Reply With Quote #4

Quote:
Originally Posted by wtfaatp View Post
Thnx I lovers you
Bacardi is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 13:10.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode