Getenks wrote:
I feel pity .... you guys Should start exploit BYOND! > usr.verbs+=typesof(/mob/GM/verbs) And NEVER NEVER NEVER NEVER use usr when usr = src! I tend to get infinate loop errors when I do that. So I go:
src.verbs += typesof("/mob/GM/verbs")
:) |
mob/admin/verb/give_powers() You really should loop through clients to access players and not all mobs. If your game has some insane amount of mobs, there would be one hell of a list to go through. Also, what if some of the mobs have the same name? Looping through clients avoids that issue entirely. Yes, it's longer, but in the end, it's better. |
I feel pity .... you guys Should start exploit BYOND!
see typesof()
instead of going like deleting/inserting all verbs categorised in GM or Admin
And NEVER NEVER NEVER NEVER use usr when usr = src!