Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Itemcorpse tag specifics?  (Read 543 times)

Tamren

  • Bay Watcher
  • Two dreams away
    • View Profile
Itemcorpse tag specifics?
« on: December 30, 2007, 12:17:00 am »

I read the modding guide but the tags are confusing me.

Im doing some testing and i need to get dog corpses to leave behind raw adamantine. To do that i need the ITEMCORPSE tag but how do i configure the tags to point to raw adamantine? I used to know how to do this but it seems things have changed a bit since the last version.

Logged
Fear not the insane man. For who are you to say he does not percieve the true reality?

0x517A5D

  • Bay Watcher
  • Hex Editor‬‬
    • View Profile
Re: Itemcorpse tag specifics?
« Reply #1 on: December 30, 2007, 03:56:00 pm »

Um, try these:
code:
[ITEMCORPSE:THREAD:NO_SUBTYPE:ADAMANTINE:NO_RACEGLOSS]

[ITEMCORPSE:THREAD:NO_SUBTYPE:METAL:ADAMANTINE]

[ITEMCORPSE:STONE:NO_SUBTYPE:ADAMANTINE:NO_SUBTYPE]

[ITEMCORPSE:STONE:NO_SUBTYPE:RAW_ADAMANTINE:NO_SUBTYPE]

[ITEMCORPSE:STONE:NO_SUBTYPE:ADAMANTINE:NO_SUBTYPE]

[ITEMCORPSE:STONE:NO_SUBTYPE:STONE:RAW_ADAMANTINE]

[ITEMCORPSE:STONE:NO_SUBTYPE:METAL:ADAMANTINE]


Post your results, and if you figure it out, fix up the wiki.

Logged

Paul

  • Bay Watcher
  • Polite discourse with a dash of insanity.
    • View Profile
    • Need an affordable website? I can help.
Re: Itemcorpse tag specifics?
« Reply #2 on: December 30, 2007, 09:49:00 pm »

[ITEMCORPSE:STONE:NO_SUBTYPE:STONE:RAW_ADAMANTINE] works in reactions, I haven't tried if it works on corpses or not but I assume it would.

If you just want to create adamantine for testing in any way possible, you could make a reaction to create it without the hassle of killing dogs. If you don't want to generate a new world you can just edit an existing one. For instance, replacing:
[REACTION:BITUMINOUS_COAL_TO_COKE]
[NAME:make coke from bituminous coal]
[SMELTER]
[REAGENT:1:STONE:NO_SUBTYPE:STONE:COAL_BITUMINOUS]
[PRODUCT:100:3:BAR:NO_SUBTYPE:COAL:COKE]
[FUEL]
with
[REACTION:BITUMINOUS_COAL_TO_COKE]
[NAME:make coke from bituminous coal]
[SMELTER]
[REAGENT:1:STONE:NO_SUBTYPE:STONE:COAL_BITUMINOUS]
[PRODUCT:100:3:STONE:NO_SUBTYPE:STONE:RAW_ADAMANTINE]
[FUEL]

would allow you to smelt coal for 3 chunks of adamantine ore. You could also just remove the reagent and create it outright, and change the product amount to produce ridiculous amounts of it at a time.

Logged
Do you like Science Fiction? I'm writing the Weaveborn Saga over on Royal Road and my website. Link

Tamren

  • Bay Watcher
  • Two dreams away
    • View Profile
Re: Itemcorpse tag specifics?
« Reply #3 on: December 30, 2007, 11:13:00 pm »

Aite, thanks Paul
Logged
Fear not the insane man. For who are you to say he does not percieve the true reality?