Quote:
Originally Posted by kramesa
Look at this example:
Code:
#include <amxmodx>
#include <csx>
public bomb_defused(Defuser) {
new szName[32];
get_user_name(Defuser, szName, charsmax(szName));
client_print(0, "%s defused the bomb.", szName);
}
public bomb_planted(Planter) {
new szName[32];
get_user_name(Planter, szName, charsmax(szName));
client_print(0, "%s planted the bomb.", szName);
}
|
Your example would error. Also the thread starter
did state that he already found the solution.
__________________