StartingGold=100

Here you can post threads requesting help on the official POL Ultima Online Emulator Core 096.
Note: Core 096 is no longer officially supported.
Post Reply
User avatar
MontuZ
Forum Regular
Posts: 338
Joined: Fri Feb 10, 2006 8:08 am

StartingGold=100

Post by MontuZ »

In the past couple years working with pol. I've never found this line or anything that I can set the amount of gold when a new char is created.

Could do a search for gold when the players created, destroy it and create the amount that I want. But that's a little bit unnecessary...

maybe a new line in servspecopt.cfg; StartingGold=100?
Firedancer
Grandmaster Poster
Posts: 104
Joined: Fri Feb 03, 2006 6:32 am

Re: StartingGold=100

Post by Firedancer »

Unreal wrote:In the past couple years working with pol. I've never found this line or anything that I can set the amount of gold when a new char is created.

Could do a search for gold when the players created, destroy it and create the amount that I want. But that's a little bit unnecessary...

maybe a new line in servspecopt.cfg; StartingGold=100?
yikes please don't.... such stuff in the server config would be really weird, this isn't a sphere shard, is it?
but uhm, I could swear there's a script that defines what new chars get and which you can customize - maybe it's in the oncreate script already?
http://poldoc.fem.tu-ilmenau.de/scriptt ... create.ecl
User avatar
MontuZ
Forum Regular
Posts: 338
Joined: Fri Feb 10, 2006 8:08 am

Post by MontuZ »

What does sphere have to do with this? lol.

It's not in;
starteqp.cfg - nothing
oncreate.src - nothing
starteqp.inc - nothing
POL Docs - nothing

I've checked 100 times.

I'd rather it be editable so I can turn it off or set the amount and not have the core handle it. And if the core handles it, why? core doesn't handle creating starting equipment.

And another thing, dunno if this is possible. What about right after creating a char, the cloths they're wearing, dagger, short pants, shirt. anyway to change that without having to make a script destroy, create and equip new cloths? nvm there's not. :lol:
User avatar
OldnGrey
POL Expert
Posts: 657
Joined: Sat Feb 04, 2006 6:26 pm

Post by OldnGrey »

Starting money?
I have never been bothered that the core doesn't override the starting gold. For years I have had a few lines in oncreate.src that immediately spends that gold and replaces it with the amount I want.
// get rid of their newbie gold replace with 500gp
character.spendgold(100);
CreateItemInBackpack(character, UOBJ_GOLD_COIN, 500);
User avatar
MontuZ
Forum Regular
Posts: 338
Joined: Fri Feb 10, 2006 8:08 am

Re: StartingGold=100

Post by MontuZ »

Unreal wrote:Could do a search for gold when the players created, destroy it and create the amount that I want. But that's a little bit unnecessary...
yeah I know... it's one of those things that should not be handled by the core.
melanius
Neophyte Poster
Posts: 39
Joined: Sat Jan 28, 2006 12:39 pm

Post by melanius »

I agree that this should be removed and pass the handling on onCreate script.

Can't think of any reason it should.
User avatar
MontuZ
Forum Regular
Posts: 338
Joined: Fri Feb 10, 2006 8:08 am

Post by MontuZ »

I'll be very happy if this happends.
MuadDib
Former Developer
Posts: 1091
Joined: Sun Feb 12, 2006 9:50 pm

Post by MuadDib »

Well, let's look at this.

Could be done a few ways. Do away with gold/clothes/dagger totally, OR a config entry somewhere to set the amount of Gold.

Let's hear a LOT of feedback, I want to know what a lot of people have to say about this. Pros and Cons both. Maybe even a flag to enable/disable it (enabled by default). Let us know ppl.
nevalon
Neophyte Poster
Posts: 39
Joined: Tue Mar 07, 2006 7:28 am

Post by nevalon »

IMO everything controlled by oncreate srcipt is the best option.
Beaud
Novice Poster
Posts: 41
Joined: Tue Feb 14, 2006 2:06 pm

Post by Beaud »

It shouldnt be specified anywhere anyway, there is no need for flags or options, lets just say, delete it from the core. Its not very hard to edit starteqp.inc. Add it in the distro but nothing more.
User avatar
MontuZ
Forum Regular
Posts: 338
Joined: Fri Feb 10, 2006 8:08 am

Post by MontuZ »

I think there should be a type of CFG file for this, atleast for the cloths. Reason for this is because we'd have to create the item in the backpack, or elsewhere and then equiped it, while the core could create them already equiped like it does now. So the cloths on the character don't just randomly appear. Or the player sees them created in their backpack then equiped.

I agree with you guys too. So, as long as I have control over it. I'm all for it.
User avatar
Tritan
Grandmaster Poster
Posts: 147
Joined: Sat Feb 04, 2006 8:17 am

Post by Tritan »

I would like to see the starting gold only removed from the core. The rest I sort of handle through scripts anyway, at least most of it. I do not see the problem with the clothes though. Leave that alone if possible.
Danielle
Grandmaster Poster
Posts: 104
Joined: Tue Feb 07, 2006 3:32 pm

Post by Danielle »

All removed and controlled through oncreate
melanius
Neophyte Poster
Posts: 39
Joined: Sat Jan 28, 2006 12:39 pm

Post by melanius »

Scott,

maybe at a flag option to let the core handle is 1/0,

If its set to 0, let the user do whatever he wants, onCreate script.

Maybe users could define the equipment in an array and iterate through it to control the "dressing" sequence.
Zacharias
New User
Posts: 16
Joined: Wed Mar 08, 2006 7:30 am

Post by Zacharias »

If it's possible to create chars by webinterface in pol96 or further versions, there should be an option to deactivate clothing, because it would be nice to script a complete own system.

otherwise deleting all items by script is better, because many people want to keep the osi-style creation system. Don't know how this would be possible (packet-hook?), if the core doesn't handle it anymore...
User avatar
CWO
POL Expert
Posts: 1160
Joined: Sat Feb 04, 2006 5:49 pm

Post by CWO »

If they take support for giving you some starting stuff out of the core just as they said, put it in your starteqp file or your onCreate file.
MuadDib
Former Developer
Posts: 1091
Joined: Sun Feb 12, 2006 9:50 pm

Post by MuadDib »

After the 3-17-06 release there will be a setting in Servspecopt.cfg for changing the starting amount for characters to use the setting you specify. This is to NOT be 0, but a positive integer above 0. Also, if not specified at all, it will default to 100 (so no need to set this unless you want too).
Danielle
Grandmaster Poster
Posts: 104
Joined: Tue Feb 07, 2006 3:32 pm

Post by Danielle »

Kinda dissapointed in the no 0 thing, but thanks.
User avatar
OldnGrey
POL Expert
Posts: 657
Joined: Sat Feb 04, 2006 6:26 pm

Post by OldnGrey »

Disappointed?
Because newbie gold doesn't stack with other gold? Please explain.
Danielle
Grandmaster Poster
Posts: 104
Joined: Tue Feb 07, 2006 3:32 pm

Post by Danielle »

I'd like to be able to turn it off entirely. No starting gold at all.
User avatar
OldnGrey
POL Expert
Posts: 657
Joined: Sat Feb 04, 2006 6:26 pm

Post by OldnGrey »

Am I the only one who is amused by this thread - going over two pages so far to talk about newbie gold! This is unreal :lol:
User avatar
MontuZ
Forum Regular
Posts: 338
Joined: Fri Feb 10, 2006 8:08 am

Post by MontuZ »

No pun intended? :)

Anyway I agree with Danielle, that's why I started this topic. So I can simply turn it off 8)
Marilla

Post by Marilla »

OldnGrey wrote:Am I the only one who is amused by this thread - going over two pages so far to talk about newbie gold! This is unreal :lol:
No, you are not the only one 8)
User avatar
Tritan
Grandmaster Poster
Posts: 147
Joined: Sat Feb 04, 2006 8:17 am

Post by Tritan »

There are many ways to handle this with scripts. The only problem I ever run into is the stacking with the newbie gold and other gold.

These is a welcome feature in the core and want to thank everyone for this but I agree the thread does seem to carry on over this topic.
Post Reply