Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 197 198 [199] 200 201 ... 990

Author Topic: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.  (Read 1683842 times)

zchris13

  • Bay Watcher
  • YOU SPIN ME RIGHT ROUND~
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2970 on: July 13, 2010, 06:38:44 pm »

It's the ORB OF POWER!!!!!1!!!!ONE!!
Logged
this sigtext was furiously out-of-date and has been jettisoned

Leafsnail

  • Bay Watcher
  • A single snail can make a world go extinct.
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2971 on: July 13, 2010, 06:55:38 pm »

Damn, wish I didn't die stupidly to a bunch of orc priests.  Having 41 EV is awesome.
Logged

ChairmanPoo

  • Bay Watcher
  • Send in the clowns
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2972 on: July 13, 2010, 07:51:03 pm »

I have figured out which file has the starting equipment for classes. It's ng-setup.cc. To add a knife to the   magic classes, you need to add
Quote
newgame_make_item(4, EQ_NONE, OBJ_WEAPONS, WPN_KNIFE);
to their inventory list.

IE:
from this:
Spoiler (click to show/hide)
to


Spoiler (click to show/hide)

I'm going to put this stuff together again and try it out. I wonder if I have to delete the old compiled files for it to work...

EDIT: w00t! it works! And I didnt have to delete everything to recompile, as I feared I'd have to do!
« Last Edit: July 13, 2010, 08:06:23 pm by ChairmanPoo »
Logged
Everyone sucks at everything. Until they don't. Not sucking is a product of time invested.

Leafsnail

  • Bay Watcher
  • A single snail can make a world go extinct.
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2973 on: July 13, 2010, 08:18:04 pm »

For some reason I have an urge to make myself start with the Orb of Zot.
Logged

ChairmanPoo

  • Bay Watcher
  • Send in the clowns
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2974 on: July 13, 2010, 08:48:43 pm »

I'm thinking on taking a peek on how gods work, now that I am in a modding mood. I want to switch around Makhleb's first two powers (AKA: you get the lesser destruction, and THEN the get power from killing), and add a restriction, if I can (No translocation spells. You are supposed to be an embodiment of Makhleb's lust to see the world burn, not some sissy who blinks out of combat at the first sign of trouble)

PD: looks complicated. It certainly is not as straightforward as the inventory thing.

the key to do the latter is here:
Spoiler (click to show/hide)

I want to add something that looks like:

Spoiler (click to show/hide)
assuming there is such a thing as a "translocation_spell" category, as there is for the others...
« Last Edit: July 13, 2010, 09:06:47 pm by ChairmanPoo »
Logged
Everyone sucks at everything. Until they don't. Not sucking is a product of time invested.

beorn080

  • Bay Watcher
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2975 on: July 13, 2010, 09:42:10 pm »

Well, there is that line in TSO's code.

Code: [Select]
if ((disciplines & SPTYP_POISON) && spell != SPELL_CURE_POISON
            && spell != SPELL_RESIST_POISON && spell != SPELL_IGNITE_POISON)
            return (true);

I think if you change SPTYP_POISON to SPTYP_TRANSLOCATION you'll have it. However, you may also want to make exceptions for spells like they did in there. There are a few combat type translocation spells.
Logged
Ustxu Iceraped the Frigid Crystal of Slaughter was a glacier titan. It was the only one of its kind. A gigantic feathered carp composed of crystal glass. It has five mouths full of treacherous teeth, enormous clear wings, and ferocious blue eyes. Beware its icy breath! Ustxu was associated with oceans, glaciers, boats, and murder.

Mr.Person

  • Bay Watcher
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2976 on: July 13, 2010, 09:50:31 pm »

Phase shift, recall, and the temporary vorpal brand one all strike me combat-oriented.
Logged
Youtube video of the year, all years.
Hmm...I've never been a big fan of CCGs - I mean, I did and still do collect Pokemon cards, but I never got heavily into the battling and trading thing.

By definition that makes you a fan since you still buy them.

beorn080

  • Bay Watcher
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2977 on: July 13, 2010, 09:52:06 pm »

Also Twist and Bend.
Logged
Ustxu Iceraped the Frigid Crystal of Slaughter was a glacier titan. It was the only one of its kind. A gigantic feathered carp composed of crystal glass. It has five mouths full of treacherous teeth, enormous clear wings, and ferocious blue eyes. Beware its icy breath! Ustxu was associated with oceans, glaciers, boats, and murder.

Leafsnail

  • Bay Watcher
  • A single snail can make a world go extinct.
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2978 on: July 14, 2010, 06:46:17 am »

I don't see any problem with Portal Projectile or Apportion either.
Logged

ChairmanPoo

  • Bay Watcher
  • Send in the clowns
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2979 on: July 14, 2010, 07:06:25 am »

I wonder, what if I used SPFLAG_ESCAPE instead?

PD: uh, there seems to be an altogether different file covering the piety and behavior stuff...

Anyways, I also want to add some half decent starting stuff to demigods, given their current suckyness. I was thinking

        you.mutation[MUT_SLOW_METABOLISM] = 1;
   you.mutation[MUT_ACUTE_VISION]    = 1;
   you.mutation[MUT_MAGIC_RESISTANCE] = 1;
   you.mutation[MUT_TOUGH_SKIN]      = 1; (as in Achilles)

The idea is that while you miss out the piety-given abilities, and still train slower than other characters, you have a nice starting kit...
« Last Edit: July 14, 2010, 09:51:35 am by ChairmanPoo »
Logged
Everyone sucks at everything. Until they don't. Not sucking is a product of time invested.

Leafsnail

  • Bay Watcher
  • A single snail can make a world go extinct.
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2980 on: July 14, 2010, 09:58:32 am »

It'd be cool if you could perhaps choose a couple of starting mutations to have as your "Demigod feats".
Logged

Dr.Feelgood

  • Bay Watcher
  • The Dwarven Barricade
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2981 on: July 14, 2010, 03:56:29 pm »

Demigods make decent hybrids/pure mages, but they're so dull. I'd rather play a human.

What's so great about the orb anyway?  It doesn't seem to do anything useful, unlike most of the other stuff in the dungeon...

Don't worry, the orb might receive some powers in the future.  ;)

Edit: Apparently, they want to make cats into a playable species. ???
« Last Edit: July 14, 2010, 04:00:08 pm by Dr.Feelgood »
Logged

Leafsnail

  • Bay Watcher
  • A single snail can make a world go extinct.
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2982 on: July 14, 2010, 04:05:53 pm »

So you're getting it because it randomly summons hostile demons, surrounds you with Orb Guardians, stops you teleporting, corrupts stuff and turns you into a irradiated wreck?  If I got the orb, I'd give it as a present to my worst enemy as soon as I leave the dungeon.
« Last Edit: July 14, 2010, 04:07:35 pm by Leafsnail »
Logged

Zorgn

  • Bay Watcher
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2983 on: July 14, 2010, 04:20:09 pm »

I heard that getting the orb to the surface gave you or your god immortality, ultimate power, or something along those lines.
Logged

Soadreqm

  • Bay Watcher
  • I'm okay with this. I'm okay with a lot of things.
    • View Profile
Re: Dungeon Crawl: Stone Soup. Or: THAT DAMN SIGMUND.
« Reply #2984 on: July 14, 2010, 04:29:56 pm »

I think giving the Orb harmful effects is kind of silly. I'm trying to get it for some reason. Having it should be beneficial. Eh, if I ever get that far I might just ignore the stupid ball and head for the surface. Not that there's much danger of that happening.
Logged
Pages: 1 ... 197 198 [199] 200 201 ... 990