musnt it be like this?
Code:
public gaben_exec(id, key)
{
if(key == 0) {
func1(id);
}
else if(key == 1) {
func2(id);
}
else if(key == 2) {
func3(id)
}
else if(key == 3) {
func4(id);
}
else if(key == 4) {
func5(id);
}
else if(key == 5) {
func6(id);
}
else if(key == 9) {
return PLUGIN_HANDLED;
}
return PLUGIN_HANDLED;
}