PHP Code:
register_touch("worldspawn", "capsule_jar", "@Touch_Jar")
should be
PHP Code:
register_touch("capsule_jar", "*", "@Touch_Jar")
also if you used FM_Touch then use it with capsule_jar too
PHP Code:
public @EntityTouch(ptr,ptd) //toucher+touched
{
new classname[32]
pev(ptr,pev_classname,classname,31)
if ( equal(classname, "capsule_jar") )
{
//Code here
}
__________________