Author Topic: Combining the big mods aka crazy's mod .06 is out now  (Read 1024871 times)

0 Members and 6 Guests are viewing this topic.

Offline crazy

  • Hero Member
  • *****
  • Posts: 733
Re: Combining the big mods aka crazy's mod
« Reply #795 on: August 26, 2013, 11:09:04 PM »
Real life got in the way but heres the bug fixed version.  Very few new things in it sorry hopefully soon I can get some stuff done.  New job started in the harem its very early but you should get an ideal of were its going

https://mega.co.nz/#!plB0VCKY!MLmxDlkoZj_ZKRSGeQXYVktuydZR5IbhwqyJalTsqLQ

Offline Pashax2

  • Newbie
  • *
  • Posts: 16
Re: Combining the big mods aka crazy's mod
« Reply #796 on: August 30, 2013, 12:24:46 AM »
Thanks for the update. I'm getting debugging notification with the 'bed warmer' job at my house - the girl finds me attractive so she gives me a discount, and the error reads "ERROR: She has a loss of -50 gold." Just thought I'd mention the error.

Offline crazy

  • Hero Member
  • *****
  • Posts: 733
Re: Combining the big mods aka crazy's mod
« Reply #797 on: August 30, 2013, 12:57:40 AM »
Thanks for the update. I'm getting debugging notification with the 'bed warmer' job at my house - the girl finds me attractive so she gives me a discount, and the error reads "ERROR: She has a loss of -50 gold." Just thought I'd mention the error.
Noticed this one myself.. not sure what causes it yet I'm looking into it.  That job is still really early and not much is working right with it.

Offline Slikk89

  • Newbie
  • *
  • Posts: 1
Re: Combining the big mods aka crazy's mod
« Reply #798 on: August 31, 2013, 04:55:37 PM »
I cant seem to edit the config for the game. Is there anyway to do so without crashing the entire game?

Offline Pashax2

  • Newbie
  • *
  • Posts: 16
Re: Combining the big mods aka crazy's mod
« Reply #799 on: August 31, 2013, 05:48:06 PM »
Noticed this one myself.. not sure what causes it yet I'm looking into it.  That job is still really early and not much is working right with it.

I'm wondering if the discount amount is based on how she feels about the player. If she likes the player a lot, she gives a bigger discount, and sometimes this is more than she would be paid for the job. That might be why she is paying me 50 gold each time she does it.

Offline Evangelion 01

  • Newbie
  • *
  • Posts: 37
Re: Combining the big mods aka crazy's mod
« Reply #800 on: September 01, 2013, 01:46:37 PM »
I cant seem to edit the config for the game. Is there anyway to do so without crashing the entire game?
rather easy just locate the config xml in "Crazy and PP's ver. 05f\Resources\Data" and edit it with any texteditor.
It's all rather good documented so it's easy to manipulate

Offline Morkar

  • Jr. Member
  • **
  • Posts: 78
Re: Combining the big mods aka crazy's mod
« Reply #801 on: September 12, 2013, 05:38:48 AM »
on the action of warming bed in your home is supposed to your slaves should not charge you money for sex because you belong?

Give money to a slave that is yours for sex with her do not see much sense

those who are not your slaves see it right even if you are in love should be very little

and slaves hated the grace you would a script where forzases and humiliate in your bed

because obviously the hate they would deny and resist

could also take advantage to subjugate them as an alternative to the dungeon and torture

That could open 2 options working

  dominate in bed

warm your bed


one could increase his feelings for you to positive and happiness and the other option to reduce their rebellion
  and increase their obedience at the cost of increasing their hatred and be more unhappy as in the dungeon

about personal training is very brief

would have more fun if you indicate besides the train as in the brothel would describe if you do good or bad depending on your skill in the field
« Last Edit: September 12, 2013, 05:50:51 AM by Morkar »

Offline HuiBui

  • Full Member
  • ***
  • Posts: 148
Re: Combining the big mods aka crazy's mod
« Reply #802 on: September 21, 2013, 04:48:20 AM »
In the past time I've played around with the scripts and the scripteditor.
Some questions popped up.
Hopefully "crazy" or someone else of the programmer would like to answer that. And thanks in advance.

If I remember right Oral sex is already implemented as a skill into the game . How is the correct syntax?

What about Masturbating ? Does the programm also treat this as a skill and if Whats the correct syntax?

To make thegame more individual , more specific, are there more picture types in the mainprogram included by now.
Which are unused at the moment?

HuiBui

Offline mteir

  • Newbie
  • *
  • Posts: 9
Re: Combining the big mods aka crazy's mod
« Reply #803 on: September 23, 2013, 12:54:20 PM »

Masturbation is not in there, it can be hard coded in but will need many changes elsewhere in the code (re ajusting traits, job modifiers etc.) in adition to just adding the skill.

I'm not quite shure what you mean with syntax but if you want to refer to the skill it shuld be SKILL_"the skill you want to refer to" so SKILL_ORALSEX for oral sex skill, that is how a specific skill is refered to in the code, but there is always a chanse it first translates it from the script files in a wierd way, as i have not yet needed to get my head around to how xml is importen, not to mention .script files.

image types hard coded and in use:
// Character image
const int IMGTYPE_ANAL      = 0;
const int IMGTYPE_BDSM      = 1;
const int IMGTYPE_SEX       = 2;
const int IMGTYPE_BEAST     = 3;
const int IMGTYPE_GROUP     = 4;
const int IMGTYPE_LESBIAN   = 5;
const int IMGTYPE_PREGNANT  = 6;
const int IMGTYPE_DEATH     = 7;
const int IMGTYPE_PROFILE   = 8;
const int IMGTYPE_COMBAT    = 9;
const int IMGTYPE_ORAL      = 10;
const int IMGTYPE_ECCHI     = 11;
const int IMGTYPE_STRIP     = 12;
const int IMGTYPE_MAID      = 13;
const int IMGTYPE_SING      = 14;
const int IMGTYPE_WAIT      = 15;
const int IMGTYPE_CARD      = 16;
const int IMGTYPE_BUNNY     = 17;
const int IMGTYPE_NUDE      = 18;
const int IMGTYPE_MAST      = 19;
const int IMGTYPE_TITTY     = 20;
const int IMGTYPE_MILK      = 21;

const int PREG_OFFSET = 22;
const int IMGTYPE_PREGANAL       = IMGTYPE_ANAL   + PREG_OFFSET;
const int IMGTYPE_PREGBDSM       = IMGTYPE_BDSM   + PREG_OFFSET;
const int IMGTYPE_PREGSEX       = IMGTYPE_SEX   + PREG_OFFSET;
const int IMGTYPE_PREGBEAST       = IMGTYPE_BEAST + PREG_OFFSET;
const int IMGTYPE_PREGGROUP       = IMGTYPE_GROUP + PREG_OFFSET;
const int IMGTYPE_PREGLESBIAN   = IMGTYPE_LESBIAN + PREG_OFFSET;
const int NUM_IMGTYPES          = IMGTYPE_PREGLESBIAN + 1;

skills hard coded:
// Skills
const unsigned int NUM_SKILLS           = 12;
const unsigned int SKILL_ANAL           = 0;
const unsigned int SKILL_MAGIC          = 1;
const unsigned int SKILL_BDSM           = 2;
const unsigned int SKILL_NORMALSEX      = 3;
const unsigned int SKILL_BEASTIALITY    = 4;
const unsigned int SKILL_GROUP          = 5;
const unsigned int SKILL_LESBIAN        = 6;
const unsigned int SKILL_SERVICE        = 7;
const unsigned int SKILL_STRIP          = 8;
const unsigned int SKILL_COMBAT         = 9;
const unsigned int SKILL_ORALSEX        = 10;
const unsigned int SKILL_TITTYSEX        = 11;

Stats hard coded:
// Editable Character Stats and skills (used for traits)
const int          NUM_STATS            = 22;
const unsigned int STAT_CHARISMA        = 0;
const unsigned int STAT_HAPPINESS       = 1;
const unsigned int STAT_LIBIDO          = 2;
const unsigned int STAT_CONSTITUTION    = 3;
const unsigned int STAT_INTELLIGENCE    = 4;
const unsigned int STAT_CONFIDENCE      = 5;
const unsigned int STAT_MANA            = 6;
const unsigned int STAT_AGILITY         = 7;
const unsigned int STAT_FAME            = 8;
const unsigned int STAT_LEVEL           = 9;
const unsigned int STAT_ASKPRICE        = 10;
const unsigned int STAT_HOUSE           = 11;
const unsigned int STAT_EXP             = 12;
const unsigned int STAT_AGE             = 13;
const unsigned int STAT_OBEDIENCE       = 14;
const unsigned int STAT_SPIRIT          = 15;
const unsigned int STAT_BEAUTY          = 16;
const unsigned int STAT_TIREDNESS       = 17;
const unsigned int STAT_HEALTH          = 18;
const unsigned int STAT_PCFEAR          = 19;
const unsigned int STAT_PCLOVE          = 20;
const unsigned int STAT_PCHATE          = 21;

i hope you got all you wanted to know

Offline crazy

  • Hero Member
  • *****
  • Posts: 733
Re: Combining the big mods aka crazy's mod
« Reply #804 on: September 23, 2013, 03:27:58 PM »
Masturbation is not in there, it can be hard coded in but will need many changes elsewhere in the code (re ajusting traits, job modifiers etc.) in adition to just adding the skill.
Thanks for anserwing that for me.  I've thought about adding Masturbation as a skill but never made up my mind on way or the other yet.
If I remember right Oral sex is already implemented as a skill into the game . How is the correct syntax?
If your using the script edioter you should just be able to use have oral sex command in it.  It will increase the girls skill and make a pic show for oral.  Same for Masturbation.  mteir listed all the pic types and they should all be code to show up as things like have bunny to make the bunny image show up... If not then I forgot to add it and ill get them in for next release.

Offline HuiBui

  • Full Member
  • ***
  • Posts: 148
Re: Combining the big mods aka crazy's mod
« Reply #805 on: September 24, 2013, 07:14:38 AM »
Thanks for your answer :)

Offline HuiBui

  • Full Member
  • ***
  • Posts: 148
Re: Combining the big mods aka crazy's mod
« Reply #806 on: October 04, 2013, 06:11:01 AM »
Coming back to Stats

If i want to add a girl and I want to give her a skill Titty with a value "10". How do I have to code the Girlsx.file ?

I've tried :
TittySex=
Tittysex=
Titty=
TITTY=
but it doesn't work.

Whats the right spelling ?

Does the exe.file let start each girl with Tittysex="0"?
On the other hand , if I add , lets say "large Boobs" , the Stat increases ..

Offline MrAOTR

  • Newbie
  • *
  • Posts: 8
Re: Combining the big mods aka crazy's mod
« Reply #807 on: October 07, 2013, 06:08:35 PM »
Hello guys, I've played WM for a while now, but I took a break from it last year and wanted to play it again. I've never tried any of the mods until I downloaded WM EX by thefuture, and had such a nice surprise so I decided to try more mods. From what I've read this one should be terrific but the download links aren't working, and I don't seem to fin any other means to download them, any ideas on where could I find all the files to play?
-Everybody wants to be a lion until it's time to do lion shit...

Offline Xela

  • Global Moderator
  • *****
  • Posts: 6893
  • "It's like hunting cows"
Re: Combining the big mods aka crazy's mod
« Reply #808 on: October 07, 2013, 06:11:35 PM »
Hello guys, I've played WM for a while now, but I took a break from it last year and wanted to play it again. I've never tried any of the mods until I downloaded WM EX by thefuture, and had such a nice surprise so I decided to try more mods. From what I've read this one should be terrific but the download links aren't working, and I don't seem to fin any other means to download them, any ideas on where could I find all the files to play?

Download link in the front post is working just fine. You can find many girl and item packs for this in other posts of the mod section as well as a map/skin mod...
Like what we're doing?

Offline MrAOTR

  • Newbie
  • *
  • Posts: 8
Re: Combining the big mods aka crazy's mod
« Reply #809 on: October 07, 2013, 06:23:28 PM »
Download link in the front post is working just fine. You can find many girl and item packs for this in other posts of the mod section as well as a map/skin mod...


My bad... I didn't know I had to use the SC file in order to play it, just an exe file and that's it, thanks for the swift response! In something unrelated, I have several girl files from WM EX, can I use them for this mod?
-Everybody wants to be a lion until it's time to do lion shit...