I know it's not anything super useful or important, but I was just wondering if anyone knows how to get my realm name to switch once a day to a random name from a list I make. =)
Printable View
I know it's not anything super useful or important, but I was just wondering if anyone knows how to get my realm name to switch once a day to a random name from a list I make. =)
Never tried it but.......
Use NAvicat or any other MYSQL tool
-Create a table in MySQL with the names u want to use.
Example : RealmNames
-Create a column where stock the names
Example : Names Varchar(20)
-Insert you're names
-Create a stored procedure where you do a randomize select in the table
and a update in realmlist for the name of you're realm.
(Don't ask me for the procedure, google something like 'random select statement' )
-Then use the scheduler to execute the stored procedure once a day.