I don't want pre-made stuffs :S.. I'm no script kiddie in some sense..
Oh, yeah.. no offtopic.. some mods will slap us
Anyway, I got the listing down.. however, my new del_players function is not really attractive.. Replacing existing values in an array, when you can delete them, is not recommended.. do you know of a way to delete a whole index array entry.. lets say "players[5]" ?? In the amx/pawn wiki it does NOT show how
New del_players:
PHP Code:
// ----------------------------------------------------------------------------
// -----------------------Delete old player details---------------------------
public del_players(id) {
players[id - 1][0] = "[none]"
players[id - 1][1] = "[none]"
players[id - 1][2] = "[Player Left]"
}
Will it work if I use "^0" ?
__________________