Page 1 of 1
can we get
Posted: Sun Mar 18, 2007 6:24 pm
by Nosferatu
a list of the new AoA's? =]
Archived topic from AOV, old topic ID:350, old post ID:1837
can we get
Posted: Sun Mar 18, 2007 8:07 pm
by Red Squirrel
They're not in yet (yeah I know I said they would
) but when they are I'll document them. I also need to post up the new formula but it may change again.
Archived topic from AOV, old topic ID:350, old post ID:1841
can we get
Posted: Sun Mar 18, 2007 8:54 pm
by Nosferatu
sweet sounds good thx
Archived topic from AOV, old topic ID:350, old post ID:1846
can we get
Posted: Sun Mar 18, 2007 10:00 pm
by E.Machine
Hey... I was wondering about something.
Was curious if hte AoA system could adapt the ToT system. Where you trade in 10 lessers for a greater somewhere? Except maybe since its felucca, you also have to pay a fee in order to do so.
Archived topic from AOV, old topic ID:350, old post ID:1848
can we get
Posted: Sun Mar 18, 2007 10:20 pm
by Nosferatu
this has been talked about ALOT lol
Archived topic from AOV, old topic ID:350, old post ID:1849
can we get
Posted: Sun Mar 18, 2007 10:31 pm
by Red Squirrel
Yeah I'm thinking of doing this, I originally wanted to get away from that since its not original, but its really the best way to control the overpopulation of AoAs but still not make them too hard to get. But to make it different I'll make it require like 25, and it's a a random greater AoA with like a 10% chance of getting screwed over and getting just a lesser in return.
Archived topic from AOV, old topic ID:350, old post ID:1850
can we get
Posted: Sun Mar 18, 2007 10:32 pm
by Nosferatu
sweet.. getting screwed is my girlfriends job thou.. but i like the idea for sure
Archived topic from AOV, old topic ID:350, old post ID:1851
can we get
Posted: Mon Mar 19, 2007 12:30 am
by Death
The idea to trade them in was kind of unoriginal because the initial idea was to turn them in like you do with tots. However, having some kind of system to trade them in would be neat. Perhaps every AOA you can turn into some person to get a certain amount of points or tokens (The common AOA's being worth less). Then you can use those tokens to purchase a greater AOA or something.
Archived topic from AOV, old topic ID:350, old post ID:1855
can we get
Posted: Mon Mar 19, 2007 12:03 pm
by Gaiava Arkkaza
Squirrel tried doing it like TOTs, definately didnt work very well.
Archived topic from AOV, old topic ID:350, old post ID:1859
can we get
Posted: Mon Mar 19, 2007 1:33 pm
by Red Squirrel
Yeah code wise I had issues as well, but if I forget the gumps, and just make it work differently, it will go better. Like you'd have to drag it on the npc or something. I will try to add some variables to playermobile to keep track of how many were returned as well, without having to delete all of them (changing saved variables around in runuo is really tricky and can cause stuff to get deleted)
I also like the points idea. Each lesser could be worth so many points. So rather then return a fixed number, you need to accumulate points. Each one could be worth a different amount of points based on rarity/mods etc. I can either staticly assign it or somehow make it dynamic.
Archived topic from AOV, old topic ID:350, old post ID:1860
can we get
Posted: Mon Mar 19, 2007 2:53 pm
by dprantl
Red Squirrel wrote:Yeah code wise I had issues as well, but if I forget the gumps, and just make it work differently, it will go better. Like you'd have to drag it on the npc or something. I will try to add some variables to playermobile to keep track of how many were returned as well, without having to delete all of them (changing saved variables around in runuo is really tricky and can cause stuff to get deleted)
I also like the points idea. Each lesser could be worth so many points. So rather then return a fixed number, you need to accumulate points. Each one could be worth a different amount of points based on rarity/mods etc. I can either staticly assign it or somehow make it dynamic.
I agree. Something like tiger teeth earrings should be worth almost as much points as you need to get a greater, for example.
Archived topic from AOV, old topic ID:350, old post ID:1862
can we get
Posted: Mon Mar 19, 2007 3:36 pm
by Nosferatu
lol
Archived topic from AOV, old topic ID:350, old post ID:1863
can we get
Posted: Mon Mar 19, 2007 3:59 pm
by Red Squirrel
I need to figure of how these values will be stored (having a variable for each AoA would be unefficient, specially as I plan to add new ones now and then) so once I figure that part out, I'll code it.
Also changed the chance formula again, to accommodate this new system. Will be similar odds as paragons, but difference is, creatures with low fame won't drop at all. I'll post a more in depth update once it goes in.
Archived topic from AOV, old topic ID:350, old post ID:1864
can we get
Posted: Mon Mar 19, 2007 4:01 pm
by Finlander
Red Squirrel wrote:Yeah code wise I had issues as well, but if I forget the gumps, and just make it work differently, it will go better. Like you'd have to drag it on the npc or something. I will try to add some variables to playermobile to keep track of how many were returned as well, without having to delete all of them (changing saved variables around in runuo is really tricky and can cause stuff to get deleted)
I also like the points idea. Each lesser could be worth so many points. So rather then return a fixed number, you need to accumulate points. Each one could be worth a different amount of points based on rarity/mods etc. I can either staticly assign it or somehow make it dynamic.
I dont know shit about pc's, less about uo coding, but would this be easy: Take that ministery guy in tokuno who trades for tots
Take random arty deed
Change the ltots what that ministery guy asks to aoa's
Change arty deed rewards to what you want them to be
Change gtot reward to that custom random arty deed you just made
Tho id ont know if its possible
Archived topic from AOV, old topic ID:350, old post ID:1865
can we get
Posted: Mon Mar 19, 2007 4:19 pm
by Red Squirrel
Yeah I thought of that, problem is most of the gumps use IDs which refer to client side names. So I can't use the names of the AoAs. I should look at code and learn to make gumps from scratch.
The other big challenge is storing the data for points per arty. I can always make it write to a file though, or if it's possible, a UO book that is in the NPC. I was thinking of making it so every now and then the values are updated according to the total number of each item on the server. So if there's like 100 claws of the holy squirrel on the server and 30 tiger teeth earings, then claws will be worth less. Every 10 days or so it could recalculate. The cool thing about using a UO book is I could even have the NPC give a copy. Would be like a catalog.
I'll look into how hard it would be to code this.
Archived topic from AOV, old topic ID:350, old post ID:1866
can we get
Posted: Mon Mar 19, 2007 4:25 pm
by Death
Red Squirrel wrote:I need to figure of how these values will be stored (having a variable for each AoA would be unefficient, specially as I plan to add new ones now and then) so once I figure that part out, I'll code it.
Also changed the chance formula again, to accommodate this new system. Will be similar odds as paragons, but difference is, creatures with low fame won't drop at all. I'll post a more in depth update once it goes in.
Can you somehow switch the NPC selling currency? For example, have an npc sell the greaters in a list but they accept the tokens instead of gold as trade. Might be difficult however, if the currency is coded into the gumps.
Archived topic from AOV, old topic ID:350, old post ID:1867
can we get
Posted: Mon Mar 19, 2007 4:41 pm
by Red Squirrel
Hmm actually I see what you mean. I could make it actually hand out tokens, rather then just keep track of points. It's most likely doable. I'll have to look at vendors see how they work. I can either staticly assign the values or try to find a way to make it dynamic.
Archived topic from AOV, old topic ID:350, old post ID:1872
can we get
Posted: Mon Mar 19, 2007 6:22 pm
by Nosferatu
i really liked that book idea
Archived topic from AOV, old topic ID:350, old post ID:1875
can we get
Posted: Mon Mar 19, 2007 7:17 pm
by Death
Red Squirrel wrote:Hmm actually I see what you mean. I could make it actually hand out tokens, rather then just keep track of points. It's most likely doable. I'll have to look at vendors see how they work. I can either staticly assign the values or try to find a way to make it dynamic.
Doesn't have to be an NPC. I just thought that up because of the existing gump idea. You could make it a stone and be a vending machinge or something.
Archived topic from AOV, old topic ID:350, old post ID:1879