Page 1 of 1
"read" account name
Posted: Sat Nov 26, 2011 12:28 pm
by kuchen91
hello,
is it possible to read the name of the account?
something like player.Name with the account name ^^
Re: "read" account name
Posted: Sat Nov 26, 2011 12:47 pm
by Administrator
I don't think it would be stable. I think that memory region is freed (but it and the password memory region isn't cleared. What the fuck were the developers thinking?) so there may not be any valid references to it and that memory region may be overwritten.
Re: "read" account name
Posted: Sat Nov 26, 2011 12:52 pm
by lisa
You can just use an in game script to get account name anyway.
Code: Select all
/script DEFAULT_CHAT_FRAME:AddMessage(GetAccountName());
So for usage with bot
Code: Select all
accname = RoMScript("GetAccountName()")
Re: "read" account name
Posted: Sat Nov 26, 2011 12:54 pm
by kuchen91
yeah

awesome
thank you very much !