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

Showing results 1 to 25 of 38
Search took 0.00 seconds.
Search: Posts Made By: Eden.Campo
Forum: Scripting 08-29-2013, 10:52
Replies: 6
Views: 1,418
Posted By Eden.Campo
Re: Menu selected item say client command

Change FakeClientCommand to GivePlayerItem(client, info);
and change the menuitems to the weapon's name
:
AddMenuItem(menu, "weapon_awp", "AWP");
Forum: General 08-25-2013, 12:14
Replies: 15
Views: 4,230
Posted By Eden.Campo
Forum: Extensions 08-24-2013, 01:59
Replies: 145
Views: 124,401
Posted By Eden.Campo
Re: [CS:GO] DoS Protect [UPDATED 26.10.12]

CS:S can be also supported?

Thanks!
Forum: Plugins 08-22-2013, 13:20
Replies: 0
Views: 4,334
Posted By Eden.Campo
[CS:S] SoccerMix v1.0.0

SoccerMix v1.0.0

Description:
SoccerMix fits into soccer servers doin' all the work!
SoccerMix is designed to be a "all-in-one" thingy for soccer servers, making the creation of a server easy!
...
Forum: Scripting 08-20-2013, 02:01
Replies: 4
Views: 3,146
Posted By Eden.Campo
Re: [TF2] Disable kill command Help

#pragma semicolon 1

#include <sourcemod>

#define PL_VERSION "0.3.8"

new Handle:g_IsEnabled = INVALID_HANDLE;

public Plugin:myinfo = {
name = "disable_kill",
Forum: Scripting 08-20-2013, 01:47
Replies: 12
Views: 3,266
Posted By Eden.Campo
Re: player SwitchTeam

#include <sourcemod>
#include <sdktools>

public OnPluginStart()
{
// Hook the Event, make it a PRE event, to not cause any probs on round start
HookEvent("round_end", OnRoundEnd,...
Forum: Extensions 08-12-2013, 01:35
Replies: 364
Views: 233,556
Posted By Eden.Campo
Re: SendProxy Manager

Thanks mate!
Forum: Extensions 08-06-2013, 07:43
Replies: 364
Views: 233,556
Posted By Eden.Campo
SendProxy Manager? DL Link

Hi there,

Download link for SPM atm isn't working: http://forums.alliedmods.net/showthread.php?t=169795.

I'd love if someone could attach a full download link here.

Thanks in advance,

Eden
Forum: Plugins 07-31-2013, 02:40
Replies: 21
Views: 17,807
Posted By Eden.Campo
Re: [CS:S] Gangs Mod - Jailbreak

I've uploaded a download, sorry for all the time it took, was kinda busy.. Though the Gangs are non-threaded yet, it's not bugged and can be used freely.
Forum: Scripting 07-30-2013, 02:13
Replies: 10
Views: 2,060
Posted By Eden.Campo
Re: timer question

I ain't sure.
Anyways, if it doesn't, use AddCommandListener(callback, "mp_restartgame").
Forum: Scripting 07-29-2013, 15:12
Replies: 10
Views: 2,060
Posted By Eden.Campo
Re: timer question

for ( new i = 1; i <= MaxClients; i++ )
{
if(!IsClientConnected(i) || IsFakeClient(i) || !IsClientInGame(i))
continue;

KillTimer(g_ticker[i]);
}
Forum: Scripting 07-29-2013, 15:02
Replies: 2
Views: 677
Posted By Eden.Campo
Re: Menu to Menu help

At the main menu handler, when a clients clicks the right selection, call DisplayMenu(handle, client, MENU_TIME_FOREVER(or a number));
Forum: Scripting 07-29-2013, 12:53
Replies: 3
Views: 1,594
Posted By Eden.Campo
Re: help with func_physbox(ball)

new LastAttacker;

public OnEntityCreated(edict, const String:classname[])
{
if(IsValidEdict(edict) && IsValidEntity(edict))
{
if(StrEqual(classname, "func_physbox"))
{...
Forum: Plugins 07-28-2013, 08:59
Replies: 41
Views: 29,660
Posted By Eden.Campo
Re: [ANY] Speech Fun v1.0.2 (05.11.2012)

Doens't work for me(CS:S)..
Forum: Scripting 07-28-2013, 04:30
Replies: 13
Views: 4,050
Posted By Eden.Campo
Re: How do you change the movement speed of a player?

SetEntPropFloat(client, Prop_Data, "m_flLaggedMovementValue", speedvalue(float));
Forum: Plugins 07-27-2013, 04:36
Replies: 4
Views: 5,159
Posted By Eden.Campo
[ANY?] Func Control

Func Control

Description:
Use this to run entity inputs on various entities in your server.

Installation::

Download the attached .smx and place in your sourcemod/plugins folder

Known...
Forum: Scripting 07-27-2013, 04:26
Replies: 9
Views: 2,766
Posted By Eden.Campo
Re: Code Errors Please Help

I gave you a compiled working version, post above.
Forum: Scripting 07-26-2013, 07:36
Replies: 9
Views: 2,766
Posted By Eden.Campo
Re: Code Errors Please Help

You should use the offline compiler, anyways here is the compiled version.
Forum: Scripting 07-25-2013, 12:49
Replies: 9
Views: 2,766
Posted By Eden.Campo
Re: Code Errors Please Help

Your code is quite unreadable because of your indention, you place : in no-where and make statements wrong. I've fixed the code for you, didn't test it ingame but it compiled fine.


#include...
Forum: Scripting 07-25-2013, 07:36
Replies: 1
Views: 746
Posted By Eden.Campo
[SOCKET] Sending messages between servers help

Hello there!

I've tried using socket for my plugins today, and it went quite fine, but for some reason I cant get SocketReceive func called, never.


new Handle:Socket;


public...
Forum: Plugins 07-25-2013, 01:35
Replies: 16
Views: 8,089
Posted By Eden.Campo
Re: [ANY] BitchSlap 7/25/13

I'd suggest you to use ProcessTargetString to find a client. It does the work very nicely.

I'll give you an example code when I get to the computer.

-
Eden
Forum: Plugins 07-07-2013, 11:43
Replies: 21
Views: 17,807
Posted By Eden.Campo
Re: [CS:S] Gangs Mod - Jailbreak

Well thanks to @Gecko I'm done with translations for now. Still working on Threaded Querys though.
If someone wants to start translating, here are the phrases.
Forum: Plugins 07-05-2013, 05:40
Replies: 21
Views: 17,807
Posted By Eden.Campo
Re: [CS:S] Gangs Mod - Jailbreak

Thanks again. I'm working on fixes, though I need some help with translations, VFormat errors.
If you can, please add me on steam: Eden.Campo/edencampo.
Forum: Plugins 07-03-2013, 03:36
Replies: 21
Views: 17,807
Posted By Eden.Campo
Re: [CS:S] Gangs Mod - Jailbreak

@Aim4Fame

Version 1.0.1 Released!

* Added Translations
* Cleaned up the code a bit.

Upcoming at the next version:
Threaded Querys!
Forum: Plugins 07-03-2013, 01:54
Replies: 21
Views: 17,807
Posted By Eden.Campo
Re: [CS:S] Gangs Mod - Jailbreak

@Annihilator
Thank you for the feedback.

I will release the new version today with your suggestions (:
Showing results 1 to 25 of 38

 
Forum Jump

All times are GMT -4. The time now is 07:53.


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