Thread: SetScale
View Single Post
05-26-10, 11:45 PM   #1
Ferous
Sheer Sense of Doom
AddOn Author - Click to view addons
Join Date: Mar 2008
Posts: 863
SetScale

Hello there! I am here to bug you all again! Mwahahhahahah! Welll.. I wouldn't make a new thread if I didn't need help and I need help if it is available at all.

I have this script below:

Code:
SLASH_MYSCRIPT1 = "/scale";
SlashCmdList["MYSCRIPT"] = function(cmd)
	Minimap:SetScale(tonumber(cmd))
	Minimap:SetResizable(true)
end
And it allows my minimap to be scaled ingame, however it ain't saving the scale after logout or reload and I assumed that the script

Code:
Minimap:SetResizable(true)
Made it to where it saves the size much like:

Code:
Minimap:SetUserPlaced(true)
And was curious why it ain't saving?

Any help is appreciated and thank you for your time!
  Reply With Quote