request: /solid plugin

Started by Snd
25/01/2006 06:33
Page 1 of 1
Snd25/01/2006 06:33

Hey, I have kz_multiplugin. There is semiclip. But i want it like that: If user types /solid or smth, then semiclip dissapears 4 about 10 seconds. I have seen it somewhere, but could any1 help me? :?
[ Edited ]

NoEx mapper25/01/2006 13:06

[blockquote]#include amxmodx
#include engine

public plugin_init(){
register_plugin("Solid", "1.337", "NoEx")
register_clcmd("say /solid","player_solid")
register_clcmd("say_team /solid","player_solid")
return PLUGIN_CONTINUE
}

public player_solid(id){
entity_set_int(id,EV_INT_solid,SOLID_BBOX)
set_task(10.0,"player_unsolid",id)
return PLUGIN_CONTINUE
}

public player_unsolid(id){
entity_set_int(id,EV_INT_solid,SOLID_NOT)
return PLUGIN_CONTINUE
}[/blockquote]

> For Amxx 0.16 or superior




[ Edited Wed Jan 25 2006, 01:09PM ]

Snd25/01/2006 16:50

What should i do with that :(

-nightmare-25/01/2006 19:02

i think you have to write it in some .ini file, i think it's the plugin.ini , buit i don't know much about that :(

NoEx mapper25/01/2006 20:04

It's an amxx plugin, compile it and put into ur plugins folder...

If u don't know how, i cannot do anything for u... :|

Snd26/01/2006 06:20

I know how, but i have amx mod, not amx mod x

acidburn26/01/2006 08:09

than remove amxmod and install amxmodx, I do not support amxmod :D

Snd26/01/2006 15:01

Why it's better than amx?

Snd27/01/2006 14:44

So does somebody know where could i get solid plugin for amx mod? :(

acidburn27/01/2006 17:46

It is better because it is still developed and there are much more plugins for it since it is open source.

KNiFEAR27/01/2006 17:47

I dno if u can get it for amx mod, but dl amxmodx here : http://www.amxmodx.org/downloads.php
chose : 'AMX Mod X Full with Installer v1.60' at the top.

NoEx mapper27/01/2006 19:31

Converted to AMX 0.9.9 / 2005rc1

[blockquote]#include amxmod
#include Vexd_Utilities

public plugin_init(){
register_plugin("Solid", "1.337", "NoEx")
register_clcmd("say /solid","player_solid")
register_clcmd("say_team /solid","player_solid")
return PLUGIN_CONTINUE
}

public player_solid(id){
entity_set_int(id,EV_INT_solid,SOLID_BBOX)
set_task(10.0,"player_unsolid",id)
client_print(id,print_chat,"[AMX] You are now solid for 10 seconds")
return PLUGIN_CONTINUE
}

public player_unsolid(id){
entity_set_int(id,EV_INT_solid,SOLID_NOT)
return PLUGIN_CONTINUE
}[/blockquote]


[ Edited Tue Jan 31 2006, 03:05PM ]

Snd29/01/2006 17:53

Thx, I installed AmxModX, but i don't want it to show that i said /solid. I want it to say You are now solid for 10 seconds :)

PrEn1uMz30/01/2006 23:52

for amxmod try it



#include amxmod
#include Vexd_Utilities

public plugin_init(){
register_plugin("Solid", "1.337", "NoEx")
register_clcmd("say /solid","player_solid")
register_clcmd("say_team /solid","player_solid")
return PLUGIN_HANDLED
}

public player_solid(id){
entity_set_int(id,EV_INT_solid,SOLID_BBOX)
set_task(10.0,"player_unsolid",id)
client_print(id,print_chat,"[AMX] You are now solid for 10 seconds")
return PLUGIN_HANDLED
}

public player_unsolid(id){
entity_set_int(id,EV_INT_solid,SOLID_NOT)
return PLUGIN_HANDLED
}
[ Edited Mon Jan 30 2006, 11:54PM ]

Snd01/02/2006 14:05

but 4 amxx?

XehLox.cL05/08/2009 04:50

adasdsad

DiDo-Grecord holder05/08/2009 08:33

wtf is this plugin :o

Alucard^25/08/2009 07:22

When you type /solid the semiclip get out for 4 seconds or something like that...

PrEn1uMz25/08/2009 14:54

It was the only way of playing with semiclip 3/4 years ago before the first AutoSemiclip

Page 1 of 1

Please log in to post replies.