Quote:
Originally Posted by fowlplay4
I just do:
clientr.(@flag) = "";
On Zodiac we have a list of variables that are specific to characters. So for items we do:
PHP Code:
for (temp.item: getstringkeys("clientr.item_")) { clientr.("item_" @temp.item) = ""; } for (temp.stat: getstringkeys("clientr.stat.")) { clientr.stat.(@temp.stat) = ""; }
|
Just tried using the following
PHP Code:
for(temp.i : getstringkeys("clientr.mud_")){
clientr.("mud_" @ temp.i) = "";
|
They are still not clearing for some reason.
Edit: Just to reiterate I cannot echo the clientr vars that are from a previous session. I can echo anything from the current session im in but anything outside of that does not return anything. It's like they have been removed but they stay in the flags still.