Thanks that help a bit but still a little confused......
Ill try an eksample:
Code:
public action {
If var = 1 {
//Code
return PLUGIN_HANDLED; //This stops the plugin from continuing
}
else if var = 2 {
//Code
return PLUGIN_CONTINUE; //stops the if, but still runs server_cmd(option1,option2)
}
else {
//Code
}
server_cmd(option1,option2)
}
Is that understood the right way ?