request: /solid plugin
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 ]
[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 ]
What should i do with that :(
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 :(
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... :|
I know how, but i have amx mod, not amx mod x
than remove amxmod and install amxmodx, I do not support amxmod :D
Why it's better than amx?
So does somebody know where could i get solid plugin for amx mod? :(
It is better because it is still developed and there are much more plugins for it since it is open source.
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.
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 ]
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 :)
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 ]
but 4 amxx?
adasdsad
wtf is this plugin :o
When you type /solid the semiclip get out for 4 seconds or something like that...
It was the only way of playing with semiclip 3/4 years ago before the first AutoSemiclip
Please log in to post replies.