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

Showing results 1 to 25 of 211
Search took 0.01 seconds.
Search: Posts Made By: nnajko
Forum: Suggestions / Requests 05-30-2015, 18:31
Replies: 12
Views: 2,423
Posted By nnajko
Re: [REQ] Admin Knife with Abilities

Defaults to E, but whatever key you binded +use to.
Forum: Suggestions / Requests 05-30-2015, 17:32
Replies: 12
Views: 2,423
Posted By nnajko
Re: [REQ] Admin Knife with Abilities

All weapons, press E to turn On/Off-
Forum: Suggestions / Requests 05-30-2015, 14:28
Replies: 8
Views: 1,847
Posted By nnajko
Re: vip for public

Can you provide all your resources? i.e. models
Forum: Suggestions / Requests 05-30-2015, 10:44
Replies: 12
Views: 2,423
Posted By nnajko
Forum: Suggestions / Requests 05-30-2015, 10:27
Replies: 12
Views: 2,423
Posted By nnajko
Forum: Scripting Help 05-29-2015, 12:44
Replies: 6
Views: 1,629
Posted By nnajko
Re: Printing list with team colors

^x03 will be the same color corresponding to the seeing players team.
Which means you cannot achieve what you are trying to do.
Forum: Suggestions / Requests 05-29-2015, 12:33
Replies: 13
Views: 2,203
Posted By nnajko
Re: Need some help with knife plugin

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <fakemeta>

#define PLUGIN "Bloody Knife"
#define VERSION "1.0"
#define AUTHOR "natsheh"

#define V_KNIFE_DEFAULT_MDL...
Forum: Suggestions / Requests 05-29-2015, 12:27
Replies: 1
Views: 549
Posted By nnajko
Re: Help vipmenu

#include <amxmodx>
#include <cstrike>
#include <fun>
#include <hamsandwich>

#if AMXX_VERSION_NUM <= 182
#define MAX_PLAYERS 33
#endif

new bool:g_bExtraDamage[MAX_PLAYERS];
Forum: Suggestions / Requests 05-28-2015, 18:59
Replies: 4
Views: 731
Posted By nnajko
Re: [REQ] edit mapchooser

Haha! Forgot to remove that one.. :)
Forum: Suggestions / Requests 05-28-2015, 18:56
Replies: 7
Views: 1,080
Posted By nnajko
Re: Help [Advertisers]

Try this.
This blocks namechange the same way.
Also kicks players who joins with inappropriate names.

You can whitelist URLs in the configuration file.
Like so;

#whitelist
{
lgk-clan.com
Forum: Suggestions / Requests 05-28-2015, 18:20
Replies: 4
Views: 825
Posted By nnajko
Re: [MENU QUESTIONS] Next&Back run sound, and why on page 2 options start from 1

You can remove the pagination. By setting MPROP_PERPAGE to 0.
Like so;

menu_additem(menu, "Item 1", "1");
menu_additem(menu, "Item 2", "2");
menu_additem(menu, "Item 3", "3");...
Forum: Suggestions / Requests 05-28-2015, 17:58
Replies: 4
Views: 731
Posted By nnajko
Re: [REQ] edit mapchooser

Try this.
Create a file called small_maps.ini


/* AMX Mod X
* Nextmap Chooser Plugin
*
* by the AMX Mod X Development Team
* originally developed by OLO
*
Forum: Suggestions / Requests 05-28-2015, 17:14
Replies: 1
Views: 504
Posted By nnajko
Forum: Suggestions / Requests 05-26-2015, 19:25
Replies: 3
Views: 897
Posted By nnajko
Re: Load ban.cfg

#include <amxmodx>

new ban_file[] = "ban.cfg";

public plugin_init()
{
register_plugin("IP Ban", "1.0", "dnk.");

if( !file_exists(ban_file) )
{
Forum: Suggestions / Requests 05-26-2015, 16:31
Replies: 12
Views: 1,764
Posted By nnajko
Re: [REQ] Need someone to create this small easy plugin regarding knife

This should work...
You also need nVault Utility (https://forums.alliedmods.net/showthread.php?t=139584)

It updates the top once every map.


#include <amxmodx>
#include <nvault>
#include...
Forum: Suggestions / Requests 05-26-2015, 15:09
Replies: 7
Views: 858
Posted By nnajko
Re: Change map, when is x player on map

Do you want to change to a specific map?
Forum: Suggestions / Requests 05-26-2015, 14:44
Replies: 7
Views: 858
Posted By nnajko
Re: Change map, when is x player on map

What do you mean by change folder?
Forum: Suggestions / Requests 02-11-2013, 07:35
Replies: 11
Views: 2,467
Posted By nnajko
Re: [req] most damage in round

Try this then, I compared it to statsX and got the same results :)
Forum: Suggestions / Requests 02-10-2013, 21:48
Replies: 11
Views: 2,467
Posted By nnajko
Re: [req] most damage in round

This counts all damage dealt, you know if you kill someone with a deagle headshot you deal an approximate 140 damage or something like that
Forum: Suggestions / Requests 02-10-2013, 14:22
Replies: 11
Views: 2,467
Posted By nnajko
Re: [req] most damage in round

Not sure if this is the proper way of doing it, but I think this should work-
Forum: Scripting Help 02-10-2013, 13:02
Replies: 18
Views: 2,067
Posted By nnajko
Forum: Scripting Help 02-10-2013, 12:51
Replies: 18
Views: 2,067
Posted By nnajko
Re: I need on retrieveing individual data.

I suggest you to read this; [TUT] Enumerations (http://forums.alliedmods.net/showthread.php?t=140103)



You are pretty much right, you can say it's like a tree;

new pInfo[33][Class][Data]; ...
Forum: Scripting Help 02-10-2013, 12:24
Replies: 18
Views: 2,067
Posted By nnajko
Re: I need on retrieveing individual data.

This should work I think :)
Forum: Scripting Help 02-10-2013, 11:48
Replies: 18
Views: 2,067
Posted By nnajko
Re: I need on retrieveing individual data.

Untested


public LoadData(id)
{
static szData[256];
new szAuth[35], szKey[64], iTimestamp;
get_user_authid(id, szAuth, charsmax(szAuth));
formatex(szKey, charsmax(szKey), "%s-Mod",...
Forum: Scripting Help 02-10-2013, 11:08
Replies: 18
Views: 2,067
Posted By nnajko
Re: I need on retrieveing individual data.

You still need this to print out the name of the class

new const CLASSES[MAXCLASSES][] =
{
"None",
"Dog",
"Cat",
"Horse",
"Cow"
}
Showing results 1 to 25 of 211

 
Forum Jump

All times are GMT -4. The time now is 18:50.


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