Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - rhtstm

#1
Hi all,
Anyone knows how the Drunk and Psychite states work in A16?

<stateEffecter>Drunk</stateEffecter>
<chemical>Psychite</chemical>


It used to work like this:

<comps>
      <li>
        <compClass>HediffComp_Disappears</compClass>
        <disappearsAfterTicks>
          <min>6000</min>
          <max>9000</max>
        </disappearsAfterTicks>
<stateEffecter>Drunk</stateEffecter>
<chemical>Psychite</chemical>
      </li>
    </comps>


Now that <compClass>HediffComp_Disappears</compClass> changed to Class="HediffCompProperties_Disappears", Drunk and Psychite is not working :(

Keep getting errors:
<stateEffecter>Drunk</stateEffecter> doesn't correspond to any field in type HediffCompProperties.

Need help,
Thanks!
#2
Help / Having problem with sound fx in A16.
December 26, 2016, 12:34:39 PM
Hi all,
I have notice that sound defs script in Alpha 16 added a new <context>MapOnly</context> line.
I have managed to change them all in my mod's script.
The problem is, some weapon's sound fx are acting weird. The first burst shot of a weapon do play the correct sound fx, then the rest of the shots sound fx just disappears/go silence while shooting.
Here is the current sound script example:

<?xml version="1.0" encoding="utf-8"?>
<DefPackage-SoundDef>
  <SoundDef>
    <defName>WeaponA</defName>
<context>MapOnly</context>
    <eventNames />
           <maxVoices>3</maxVoices>
           <maxSimultaneous>1</maxSimultaneous>
    <subSounds>
      <li>
        <grains>
          <li Class="AudioGrain_Folder">
            <clipPath>WeaponAsound</clipPath>
          </li>
        </grains>
        <volumeRange>
          <min>60</min>
          <max>80</max>
        </volumeRange>
        <pitchRange>
          <min>0.935690</min>
          <max>1.055345</max>
        </pitchRange>
      </li>
    </subSounds>
  </SoundDef> 
</DefPackage-SoundDef>


Anyone have any idea what is going on?

Thanks!
#3
General Discussion / "Long-term research" Bug?
September 04, 2016, 09:20:25 PM
My friend is having a problem in Rimworld, where he places down the basic research bench, set projects, people will never do it at all. When he tried to force them to do their job, it says that it's a long-term research, it needs 300 research points or something like that.
Any clue what's happening?
Thanks!
#4
Outdated / [B18] RT's Weapon Pack
August 31, 2016, 04:09:56 AM



This mod adds a ton of new weapons for colonists to craft, trade, and fight with.

Note:
New weapons are well balanced to fit with the default weapons as best as they can.
Each update will contain at least 1 new weapon, plus bug fix and balance tweaks.
Please report if any errors occurred!

************************************
*Weapon Art made by RT.
*Don't hesitate to leave your comments and suggestions below :)
************************************
Supported Languages
English
Simplified Chinese
Russian
************************************

Currently Avaliable Weapons:
g]

************************************


Download Link
01/19/2018 updated
Steam Workshop
http://steamcommunity.com/sharedfiles/filedetails/?id=730899625

Google Drive
https://drive.google.com/open?id=1oWgcsix-osSvzjRxxdw5AChkp8cosrIQ

百度网盘:
https://pan.baidu.com/s/1bqy182j


Enjoy this mod and also my artwork?
Please consider to support my work and efforts. Thank you! :)


Update Log


01/19/2018
New weapons and changes in this update:

*M72 L.A.W

*Beretta M12 SMG

*Tomahawks (Throwing axe)

*Slingshot (Seriously?!)

*MP 18 SMG

*Melee&Range weapon stats balance




01/15/2018
New mod version for B18 (Reworked on the whole script, polished some weapon art and sound fx.)

New Sniper Rifle: Kar98

New Rifle: Inferno Rifle

New Ranged Defensive Weapon: Fire Extinguisher

New Ranged Weapon: Shuriken

New Grenade: Smoke Grenade


01/18/2017
Steyr SSG 08 Sniper Rifle
Sound Fx
Weapon Stats adjust
Equipped weapon offset stats (Some weapon now have positive/negative stat attributes)

01/07/2017
-New sound Fx for weapons!
-LVOA-C
-M84 Flashbang Grenade
-Russian Translation


01/03/2017
-New sound Fx for weapons!
-MP 40 SMG!
-Now support Alpha16!


09/03/2016
-New sound Fx for weapons!
-Added: M1014, Uzi
-Sound Fx adjustments for weapons


08/31/2016
-New sound Fx for weapons!
-Fixed an error for "Weapon Assembly" research project.
-3 New Weapons!







#5
Help / Question about <skillRequirements>
August 11, 2016, 07:37:41 PM
Hello!
Is there a way to add a specific level requirement for using a weapon?
Tried to add these lines into a weapon's RecipeDef file but colonist below that min Level can also use the weapon.

<skillRequirements>
<li>
    <skill>Shooting</skill>
    <minLevel>5</minLevel>
</li>
</skillRequirements>


Anything I missed in the code? Or is there another way to do it?
Thanks!
#6
Help / Research Project def help
July 29, 2016, 09:03:59 PM
Hello,
Is it possible to let an item that can be craft after research a certain research project? Currently working on a mod right now and want to add this cool feature in. If so, what's the def file structure like?
Sorry for asking a noob question.  :P

Thanks!