Just some simple questions, what would be better in the functions? (Performance wise)
Code:
new name[33]
client_print(id,print_chat,"Name: %s",get_user_name(id,name,32))
Or
Code:
new name[33]
get_user_name(id,name,32)
client_print(id,print_chat,"Name: %s",name)
Or would they both be the same?
Also, are 'enums' just like defines, but in a struct like form?
Code:
enum {
ONE = 1
TWO = 2
THREE = 3
}
Code:
#define ONE 1
#define TWO 2
#define THREE 3
Would this be the same?
__________________