added client_score forward

This commit is contained in:
Lukasz Wlasinksi
2004-09-08 18:09:01 +00:00
parent 4c202dadb0
commit c5d7417f8e
6 changed files with 56 additions and 16 deletions

View File

@ -367,6 +367,14 @@ void Forward::exec(int p1,int p2,int p3,int p4,int p5){
}
}
void Forward::exec(int p1,int p2,int p3){
AmxCall* a = head;
while ( a ){
MF_AmxExec(a->amx, NULL, a->iFunctionIdx, 3,p1, p2, p3);
a = a->next;
}
}
void Forward::exec(int p1,int p2){
AmxCall* a = head;
while ( a ){