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

Showing results 1 to 25 of 56
Search took 0.05 seconds.
Search: Posts Made By: anon12
Forum: Suggestions / Requests 03-19-2017, 18:55
Replies: 2
Views: 694
Posted By anon12
Re: [CodMod] Exp steam players.

i think he wants to give steam players 10% more exp than non-steam.
anyway, no steam no support.
Forum: Suggestions / Requests 10-30-2016, 22:33
Replies: 5
Views: 2,980
Posted By anon12
Re: [Help] super hero

Make sure you have MonsterMod installed.
Forum: Tech Support 03-04-2016, 10:33
Replies: 2
Views: 2,887
Posted By anon12
Re: any idea what this means?

Check if user is alive and connected.
Forum: Scripting Help 10-06-2015, 13:18
Replies: 5
Views: 2,274
Posted By anon12
Re: Need help to locate the foult

The error already explained what's wrong. There are 2 plugin_init in your code. You can only have 1.
Forum: Scripting Help 10-06-2015, 00:45
Replies: 5
Views: 2,274
Posted By anon12
Re: Need help to locate the foult

What's wrong with it?
It compiles fine..
Forum: Suggestions / Requests 12-24-2014, 03:27
Replies: 0
nvm
Views: 525
Posted By anon12
nvm

/delete or close
thanks
Forum: Scripting Help 07-30-2014, 23:15
Replies: 0
Views: 382
Posted By anon12
untouch

Hello

How can I check if the user is no longer touching the entity?

Example: If the user is no longer touching the npc, then close the menu

EDIT: Also, how to get the distance between the...
Forum: Suggestions / Requests 07-26-2014, 23:37
Replies: 1
Views: 419
Posted By anon12
Server crashing (Precache)

EDIT: nvm fixed it, it was this plugin: https://forums.alliedmods.net/showthread.php?t=171286 for some reason
Forum: Suggestions / Requests 07-25-2014, 21:34
Replies: 7
Views: 852
Posted By anon12
Re: ask for Immunity

search for "Super Admin"
Forum: Scripting Help 07-25-2014, 19:14
Replies: 1
Views: 601
Posted By anon12
command contain

is it possible to check if the command contains something?

Example:
1. If command contains "amx_" then show all the commands in the amx_help.
2. If command contains "heal" then restore user...
Forum: Scripting Help 07-21-2014, 04:20
Replies: 6
Views: 1,145
Posted By anon12
Re: Skip some number using While

Thanks,

I have this, but it still creates a number from 1 to 649. Why is that? :/
new i=0;
while( i<=649/12)
{
if( (12*i)+1 == 388)
{
i = 493
}
Forum: Scripting Help 07-21-2014, 02:44
Replies: 6
Views: 1,145
Posted By anon12
Skip some number using While

How can I skip a certain number using Whileloop?

Example:
It will loop a number from 1 -500 however I don't want 200-300 to be counted.
Forum: Suggestions / Requests 07-17-2014, 00:57
Replies: 1
Views: 472
Posted By anon12
[REQ] Convert to DHUD

Can someone convert this to dhud?
PokeDisplay(id, aid)
{
if ( !PMon() || !Pokemod_Connected(id) || !Pokemod_Connected(aid) ) return

static message[256], iLen
copy(message, 255, EMPTY)
iLen =...
Forum: Scripting Help 07-13-2014, 23:12
Replies: 3
Views: 652
Posted By anon12
Setting Knife Model

Why wont it work? The knife model is staying at default..

just wondering wats wrong with my code? :P
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <fakemeta>
#include...
Forum: Suggestions / Requests 07-12-2014, 14:31
Replies: 1
Views: 338
Posted By anon12
Hide unknown commands

Hello,

As title says, can someone make a plugin that hides the "Unknown Command" when a user types an invalid command to the console?
Forum: Unapproved/Old Plugins 06-28-2014, 16:04
Replies: 53
Views: 27,089
Posted By anon12
Re: Bind Number Slots

does this still work?
Forum: Suggestions / Requests 06-25-2014, 19:26
Replies: 17
Views: 3,638
Posted By anon12
Re: How To Make a Gun Hero

Try this 1
#include <amxmod>
#include <Vexd_Utilities>
#include <superheromod>

// GLOBAL VARIABLES
new gHeroName[]="Splask"
new gHassplaskPower[SH_MAXSLOTS+1]...
Forum: Suggestions / Requests 06-25-2014, 19:16
Replies: 17
Views: 3,638
Posted By anon12
Re: How To Make a Gun Hero

mmk ill test it on my server and post the whole code
Forum: Suggestions / Requests 06-25-2014, 18:46
Replies: 17
Views: 3,638
Posted By anon12
Re: How To Make a Gun Hero

Did you put these files in?
g_p_model = precache_model("models/shmod/Super/p_weapon_model.mdl"); //makes players download the model
g_v_model =...
Forum: Suggestions / Requests 06-25-2014, 18:37
Replies: 17
Views: 3,638
Posted By anon12
Re: How To Make a Gun Hero

Oh right i forgot

Add this in the plugins_init():
register_event("CurWeapon", "weaponChange", "be", "1=1")

and somewhere below

public plugin_precache()
{
g_p_model =...
Forum: Suggestions / Requests 06-25-2014, 18:18
Replies: 17
Views: 3,638
Posted By anon12
Re: How To Make a Gun Hero

Something like this:
#include <amxmodx>
#include <superheromod>
#include <fakemeta>

new gHeroName[]="Hero Name" //creates a string varr to hold your hearo's name
new...
Forum: Suggestions / Requests 06-25-2014, 16:51
Replies: 17
Views: 3,638
Posted By anon12
Re: How To Make a Gun Hero

u cant have more than 2 plugins_init at once

something like this: (from rolnaaba's code)
#include <amxmodx>
#include <superheromod>
#include <fakemeta>

new gHeroName[]="Hero Name" //creates...
Forum: Suggestions / Requests 06-24-2014, 16:18
Replies: 17
Views: 3,638
Posted By anon12
Re: How To Make a Gun Hero

There's a few tutorial on how to create a hero (including guns)
https://forums.alliedmods.net/showthread.php?t=54155
https://forums.alliedmods.net/showthread.php?t=120051

Or you could rip some...
Forum: New Submissions 06-22-2014, 14:37
Replies: 3
Views: 3,209
Posted By anon12
Re: Hero: Marine

ripped from US Marine nothing new...
Forum: Off-Topic 06-01-2014, 19:48
Replies: 1
Views: 724
Posted By anon12
nVault or MySQL?

Which saving should I use? and why?
Also what are the advantages and disadvantages of this saving?

ive seen ppl change from nvault to mysql and mysql to nvault..
Showing results 1 to 25 of 56

 
Forum Jump

All times are GMT -4. The time now is 11:51.


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