Added new natives

This commit is contained in:
David Anderson 2004-11-14 14:21:20 +00:00
parent 199131b2b8
commit e688addd98

View File

@ -257,4 +257,9 @@ stock list_pop_int(list_id) {
stock list_pop_string(list_id) { stock list_pop_string(list_id) {
return list_pop(list_id, list_string) return list_pop(list_id, list_string)
} }
//Check if an item is in a list
native in_list_string(list_id, const str[]);
native in_list_float(list_id, Float:num);
native in_list_int(list_id, num);