Is it possible to make variables in a xml file?
I want to send in integers to this line:
<SellItemOnAhAction Category="Armor" SubCategoryType="WoWItemArmorClass" SubCategory="Misc" UseCategory="True" RunTime="_12_Hours" AmountType="Everything" ItemID="15134" MinBuyout="299g0s0c" MaxBuyout="2895g0s0c" StackSize="1" IgnoreStackSizeBelow="1" Amount="10" BidPrecent="100" UndercutPrecent="0.0001" AutoFindAh="True" PostIfBelowMinBuyout="False" Location="0, 0, 0" />
As the MinBuyout and MaxBuyout.
If it is possible, can you please tell me how it is written.
Example: (I am sure this wouldnt work, but need to know how those 2 things are written)
int MinBuyoutVar = 10;
MinBuyout=MinBuyoutVar
Also, is it possible to make a loop and a array? (not important but would make it a lot less to write)
So I could loop it and get the ItemID from the array.
I want to send in integers to this line:
<SellItemOnAhAction Category="Armor" SubCategoryType="WoWItemArmorClass" SubCategory="Misc" UseCategory="True" RunTime="_12_Hours" AmountType="Everything" ItemID="15134" MinBuyout="299g0s0c" MaxBuyout="2895g0s0c" StackSize="1" IgnoreStackSizeBelow="1" Amount="10" BidPrecent="100" UndercutPrecent="0.0001" AutoFindAh="True" PostIfBelowMinBuyout="False" Location="0, 0, 0" />
As the MinBuyout and MaxBuyout.
If it is possible, can you please tell me how it is written.
Example: (I am sure this wouldnt work, but need to know how those 2 things are written)
int MinBuyoutVar = 10;
MinBuyout=MinBuyoutVar
Also, is it possible to make a loop and a array? (not important but would make it a lot less to write)
So I could loop it and get the ItemID from the array.