RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Champion Token Loot

drakeypooh1

Wanderer
Champion Token Loot

You know how when you kill a champion it sprays gold all over? Well, some people use tokens on their shard and would rather have the champions drop tokens rather than gold.

It is actually a very simple change to make, and the amount can be customized as well.

1. Open RunUO/Scripts/Mobiles/Special/BaseChampion.cs.

2. FIND: Gold g = new Gold( 500, 1000 );

3. CHANGE TO: Tokens g = new Tokens( custom amount );
NOTE: Replace custom amount with the amount you want to be in each pile of tokens. Note that if you put two numbers with commas in between them, it would add them together for the max amount. Let's say we used 50, 100. The max would be 150, and the minimum would be 50. If you want it to just be one amount, then just put one number, without any commas, like this:
Tokens g = new Tokens( 10 );
Also bear in mind that we keep the nickname (g) the same so that we won't have to change all the lines that come after that.

4. Save/close BaseChampion.cs
OPTIONAL: You can also make the harrower drop tokens instead of gold, as his gold drop is different. If you don't want to do this, skip ahead to step 9.

5. Open RunUO/Scripts/Mobiles/Special/Harrower.cs

6. FIND: Gold g = new Gold( 750, 1250 );

7. CHANGE TO: Tokens g = new Tokens( custom amount );

8. Save/close Harrower.cs.

9. You're done! Restart your server!
 
Top