.INI?

Need some help with that macro you're working on or aren't quite sure how to get your macro to do something? Ask here!

Moderator: MacroQuest Developers

Macrookie
decaying skeleton
decaying skeleton
Posts: 4
Joined: Tue Dec 23, 2003 5:50 am

.INI?

Post by Macrookie » Wed Dec 24, 2003 3:17 am

What is an .INI file and how do I write one for that fletching script?
Im new :)

battaile
Contributing Member
Contributing Member
Posts: 40
Joined: Tue Dec 09, 2003 10:55 am

Post by battaile » Thu Dec 25, 2003 6:01 pm

An ini file is a text file that the macro reads data from, basically it allows you, the user, to configure the mac without touching the actual macro code.

I dont know which fletching script you're referring to but they're generally laid out like:

Code: Select all

[section1]
var1=value1
var2=value2
...

[section2]
var1=value1
...
So you should be able to look at a sample ini for the macro you're interested in and go from there.