Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 25
Search took 0.00 seconds.
Search: Posts Made By: Markiez
Forum: Plugin/Gameplay Ideas and Requests 06-06-2018, 03:12
Replies: 0
Views: 574
Posted By Markiez
[CS:GO Req] simple stats

hello, so I want a plugin: if u get a kill that will be inserted into a database, if you die a kill from the database will be removed. thx
Forum: Scripting 05-31-2018, 14:25
Replies: 2
Views: 667
Posted By Markiez
Re: [CS:GO] warmup for match server

mp_warmup_pausetimer 1
Forum: Plugin/Gameplay Ideas and Requests 05-29-2018, 12:58
Replies: 11
Views: 2,432
Posted By Markiez
Re: [REQ] USP Ninja Team swap (CS GO)

aw right, never played that gamemode xD my bad sorry :D:D:D
Forum: Plugin/Gameplay Ideas and Requests 05-29-2018, 11:13
Replies: 11
Views: 2,432
Posted By Markiez
Re: [REQ] USP Ninja Team swap (CS GO)

I obviously mean GetEventInt xD

ur vers repeats every round (I think he mean the pistol round only).
Forum: Plugin/Gameplay Ideas and Requests 05-27-2018, 15:11
Replies: 11
Views: 2,432
Posted By Markiez
Re: [REQ] USP Ninja Team swap (CS GO)

#include <sourcemod>

bool g_bSwapped;

public void OnPluginStart()
{
HookEvent("round_end", Event_End);
}

public void OnMapStart()
Forum: Scripting 05-14-2018, 12:55
Replies: 3
Views: 1,040
Posted By Markiez
helpz me blisz

#pragma semicolon 1

#include <sourcemod>
#include <cstrike>
#include <sdktools>

#pragma newdecls required

public void OnPluginStart()
{
Forum: Plugin/Gameplay Ideas and Requests 05-10-2018, 13:23
Replies: 16
Views: 5,650
Posted By Markiez
Re: Everyone please help me

it's not going to work! You are using amx, which speaks for itself. It isn't sourcemod. Post in the right section and you will get the help you need.
Forum: Plugin/Gameplay Ideas and Requests 05-10-2018, 13:12
Replies: 11
Views: 2,582
Posted By Markiez
Re: deathmatch (5 minutes =ak, 10 minutes = awp, 15 minutes = usp)

for example. 5 * 60 = 300, create a timer on 300 sec. make a callback function, exec a config which allows the prefered weapons. done.
Forum: Plugin/Gameplay Ideas and Requests 05-10-2018, 13:00
Replies: 12
Views: 2,470
Posted By Markiez
Re: Best plugin to handle teamkillers?

if they are in the same team, but I thought wrong
Forum: Plugin/Gameplay Ideas and Requests 05-07-2018, 10:07
Replies: 16
Views: 5,650
Posted By Markiez
Re: Everyone please help me

#include <sourcemod>

#pragma semicolon 1

public Action:OnClientSayCommand(client)
{
decl String:text[99];
GetCmdArgString(text, sizeof(text));

if (StrContains(text, "@")...
Forum: Plugin/Gameplay Ideas and Requests 05-07-2018, 06:52
Replies: 16
Views: 5,650
Posted By Markiez
Re: Everyone please help me

If I get this right, it should look something like this? I guess, havin hard time understanding actually wat u mean.

#include <sourcemod>

#pragma semicolon 1

public...
Forum: Plugin/Gameplay Ideas and Requests 05-06-2018, 15:03
Replies: 0
Views: 669
Posted By Markiez
Partnership

Good evening everyone!
I've got some sourcemod projects need to be finnished and it takes a while for me to do them, since I'm the only coder on my community.
If anyone is interested, just pm me.
Forum: Plugin/Gameplay Ideas and Requests 05-06-2018, 14:43
Replies: 6
Views: 1,327
Posted By Markiez
Re: Hide healthbar + armor?

You can also create a loop like this:
#include <sourcemod>

#pragma semicolon 1

bool Something;

public void OnPluginStart()
{
HookEvent("player_team", EventSomethingxD);
Forum: Plugin/Gameplay Ideas and Requests 05-06-2018, 14:20
Replies: 2
Views: 1,370
Posted By Markiez
Re: NoSpread only for vips

No spread, no recoil, same shit? if so, this is the way you wanna go:
#include <sourcemod>

#pragma semicolon 1

public void OnPluginStart()
{
HookEvent("player_spawn", Event_Spawn);
}
Forum: Plugin/Gameplay Ideas and Requests 05-06-2018, 14:01
Replies: 5
Views: 1,388
Posted By Markiez
Re: Auto 1 day ban to Sourcebans on leaving server

Why not just?
#include <sourcemod>

#pragma semicolon 1

bool Ready;

public void OnPluginStart()
{
HookEvent( "player_disconnect", Event_Disconnect, EventHookMode_Pre);
Forum: Plugin/Gameplay Ideas and Requests 05-06-2018, 09:51
Replies: 2
Views: 1,215
Posted By Markiez
Re: [REQ$] CSGO Surf Developer

influxtimer is also good.
https://influxtimer.com/
Forum: Plugin/Gameplay Ideas and Requests 05-06-2018, 09:41
Replies: 12
Views: 2,470
Posted By Markiez
Re: Best plugin to handle teamkillers?

#include <sourcemod>
#include <cstrike>

#pragma semicolon 1

public void OnPluginStart()
{
HookEvent("player_death", Event_PlayerDeath);
}
Forum: Plugins 05-05-2018, 16:38
Replies: 4
Views: 5,758
Posted By Markiez
Re: [CS:GO] Team Join Announce

Really appreciate the feedback! :)
blis add me on steam though, wanna talk lil bit if that's fine: http://steamcommunity.com/profiles/76561198834179701/
Forum: Unapproved Plugins 05-02-2018, 12:34
Replies: 1
Views: 2,945
Posted By Markiez
[CS:GO] Sm_Scores

Sm_Scores
Hi!
So I was recently searching around for a similar plugin, but couldn't just find anything that satisfied me enough. Sure, there were a lot of good plugins that I could use, however I...
Forum: Plugin/Gameplay Ideas and Requests 05-02-2018, 12:23
Replies: 12
Views: 2,470
Posted By Markiez
Re: Best plugin to handle teamkillers?

There's a command for it. Google tk punish and you will find what ur looking for.
Forum: Plugins 04-11-2018, 15:35
Replies: 4
Views: 5,758
Posted By Markiez
Re: [CS:GO] Team Join Announce

https://forums.alliedmods.net/showthread.php?p=2317313
This plugin has used some of this code, getting countries. Cred to this dude.
Forum: Plugins 04-11-2018, 15:29
Replies: 4
Views: 5,758
Posted By Markiez
[CS:GO] Team Join Announce

Team Join Announce
Discord: http://discords.pw/nerpcsgo
This plugin provides information in the chat for when players join a team.

There's not much "information", other than the name of the...
Forum: Plugins 04-11-2018, 13:49
Replies: 4
Views: 5,363
Posted By Markiez
Re: [CS:GO] Deathmatch

I'll upload the .smx file
Forum: Plugins 04-11-2018, 13:36
Replies: 4
Views: 5,363
Posted By Markiez
[CS:GO] Deathmatch

I created this plugin for personal use on my own FFA Deathmatch server, what I like about it is the simplistic code & it's easy to edit. I sure know there's a lot of deathmatch plugins out there, but...
Forum: Plugins 03-24-2018, 15:17
Replies: 1
Views: 4,383
Posted By Markiez
[CS:GO] Very Simple Pug Plugin.

Very Simple Pug Plugin.
This plugin allows you to take your competitive server to a whole new level. Inspired by servers like esea, fragdeluxe and pnks.
This plugin is still in beta, expect more...
Showing results 1 to 25 of 25

 
Forum Jump

All times are GMT -4. The time now is 21:01.


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