Skip to content
Snippets Groups Projects
mod_EditSlaveCheat.tw 39.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • :: MOD_Edit Slave Cheat [nobr]
    
    pregmodfan's avatar
    pregmodfan committed
    
    
    <<set $nextButton = "Continue">>
    <<set $nextLink = "MOD_Edit Slave Cheat Datatype Cleanup">>
    <<set $oldName = $activeSlave.slaveName>>
    
    
    ''Cheating Edit Slave''
    
    <br><br>
    
    pregmodfan's avatar
    pregmodfan committed
    
    
    ''Birth Name:''
    <<textbox "$activeSlave.birthName" $activeSlave.birthName>>
    <br>''Slave Name (birth name was $activeSlave.birthName):''
    <<textbox "$activeSlave.slaveName" $activeSlave.slaveName>>
    
    pregmodfan's avatar
    pregmodfan committed
    
    
    <br><br>
    
    ''Current Slave ID: ($activeSlave.ID)''
    
    <br>
    
    
    <<if $familyTesting == 1>>
    	''Enter the IDs for this slaves parents(-2 or 0:random and untracked by system, -1:PC, all others are applicable):''
    	<br>
    	''mother ID''
    
    	<<textbox "$activeSlave.mother" $activeSlave.mother>>
    
    	<br>
    	''father ID''
    
    	<<textbox "$activeSlave.father" $activeSlave.father>>
    
    <<else>>
    	''Slave Blood Relations (twin, sister, mother, daughter):''
    	<<textbox "$activeSlave.relation" $activeSlave.relation>>
    
    <br>
    
    ''Blood Relations Target ID:''
    <<textbox "$activeSlave.relationTarget" $activeSlave.relationTarget>>
    <br>
    ''Relationship (-3:married to you, -2:relationship, -1:emotional slut, 0:none, 1:like, 2:friend, 3:sex friend, 4:lover, 5:married): $activeSlave.relationship |''
    <br>
    <<radiobutton "$activeSlave.relationship" -3>> Married to You
    <<radiobutton "$activeSlave.relationship" -2>> In Relationship with You
    <<radiobutton "$activeSlave.relationship" -1>> Emotional Slut
    <<radiobutton "$activeSlave.relationship" 0>> None
    <<radiobutton "$activeSlave.relationship" 1>> Like
    <<radiobutton "$activeSlave.relationship" 2>> Friend
    <<radiobutton "$activeSlave.relationship" 3>> Sex Friend
    <<radiobutton "$activeSlave.relationship" 4>> Lover
    <<radiobutton "$activeSlave.relationship" 5>> Married
    <br>
    ''Relationship Target ID:'' <<textbox "$activeSlave.relationshipTarget" $activeSlave.relationshipTarget>>
    
    <br><br>
    
    <</if>>
    <br>
    
    ''Career ($activeSlave.career)''
    
    Pregmodder's avatar
    Pregmodder committed
    <<textbox "$activeSlave.career" $activeSlave.career>> //Slave variables documentation is your friend. Will tell you exactly what to put here//
    
    57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
    
    <br>
    
    ''Origin ($activeSlave.origin)''
    <<textbox "$activeSlave.origin" $activeSlave.origin>>
    
    <br>
    
    ''Legal status: (-1: slave, 0 or more: indentured for x weeks)''
    <<textbox "$activeSlave.indenture" $activeSlave.indenture>>
    
    <br>
    
    ''Nationality: ($activeSlave.nationality)''
    <<textbox "$activeSlave.nationality" $activeSlave.nationality>>
    &nbsp;&nbsp;&nbsp;&nbsp;//This will not alter name or race//
    
    <br>
    
    
    ''Race: ($activeSlave.race)''
    <<textbox "$activeSlave.race" $activeSlave.race>>
    <br>
    <<radiobutton "$activeSlave.race" "white">> White
    <<radiobutton "$activeSlave.race" "asian">> Asian
    <<radiobutton "$activeSlave.race" "latina">> Latina
    <<radiobutton "$activeSlave.race" "middle eastern">> Middle eastern
    <<radiobutton "$activeSlave.race" "black">> Black
    <<radiobutton "$activeSlave.race" "semitic">> Semitic
    <<radiobutton "$activeSlave.race" "southern European">> Southern European
    <<radiobutton "$activeSlave.race" "indo-aryan">> Indo-aryan
    <<radiobutton "$activeSlave.race" "amerindian">> Amerindian
    <<radiobutton "$activeSlave.race" "pacific islander">> Pacific Islander
    <<radiobutton "$activeSlave.race" "malay">> Malay
    <<radiobutton "$activeSlave.race" "mixed race">> Mixed race
    
    <br>
    
    ''Skin color: ($activeSlave.skin)''
    <<textbox "$activeSlave.skin" $activeSlave.skin>>
    <br>
    <<radiobutton "$activeSlave.skin" "white">> White
    <<radiobutton "$activeSlave.skin" "fair">> Fair
    <<radiobutton "$activeSlave.skin" "tanned">> Tanned
    <<radiobutton "$activeSlave.skin" "olive">> Olive
    <<radiobutton "$activeSlave.skin" "light brown">> Light brown
    <<radiobutton "$activeSlave.skin" "brown">> Brown
    <<radiobutton "$activeSlave.skin" "black">> Black
    <<radiobutton "$activeSlave.skin" "pale">> Pale
    <<radiobutton "$activeSlave.skin" "dark">> Dark
    <<radiobutton "$activeSlave.skin" "light">> Light
    <<radiobutton "$activeSlave.skin" "extremely pale">> Extremely pale
    
    <br>
    
    ''Accent: ($activeSlave.accent)''
    <<textbox "$activeSlave.accent"  $activeSlave.accent>>
    <br>
    <<radiobutton "$activeSlave.accent" 0>> None
    <<radiobutton "$activeSlave.accent" 1>> Distinctive
    <<radiobutton "$activeSlave.accent" 2>> Thick
    <<radiobutton "$activeSlave.accent" 3>> Barely Understands Language
    
    <br><br>
    
    ''Age - Actual:''
    <<textbox "$activeSlave.actualAge" $activeSlave.actualAge>>
    &nbsp;&nbsp;&nbsp;&nbsp;
    <br>
    ''Age - Physical:''
    <<textbox "$activeSlave.physicalAge" $activeSlave.physicalAge>>
    &nbsp;&nbsp;&nbsp;&nbsp;
    <br>
    ''Age - Visual:''
    <<textbox "$activeSlave.visualAge" $activeSlave.visualAge>>
    &nbsp;&nbsp;&nbsp;&nbsp;
    <br>
    ''Health (-99 to 100, -100 is death):''
    <<textbox "$activeSlave.health" $activeSlave.health>>
    <br>
    ''Addiction:''
    <<textbox "$activeSlave.addict" $activeSlave.addict>>
    
    <br><br>
    
    //Don't set devotion too far away from old devotion otherwise it won't stick//
    <br>
    ''Devotion (-100 to 100):''
    <<textbox "$activeSlave.devotion" $activeSlave.devotion>>
    <br>
    ''Old Devotion (-100 to 100):''
    <<textbox "$activeSlave.oldDevotion" $activeSlave.oldDevotion>>
    
    <br>
    //Don't set trust too far away from old trust otherwise it won't stick//
    <br>
    ''Trust (-100 to 100):''
    <<textbox "$activeSlave.trust" $activeSlave.trust>>
    <br>
    ''Old Trust (-100 to 100):''
    <<textbox "$activeSlave.oldTrust" $activeSlave.oldTrust>>
    
    <br><br>
    
    ''Her hair is $activeSlave.hStyle''
    Custom hair description: <<textbox "$activeSlave.hStyle" $activeSlave.hStyle>>
    <br>
    //For best results, use a short, uncapitalized and unpunctuated description; for example: 'back in a ponytail'//
    
    <br>
    ''Hair length: $activeSlave.hLength''
    Custom hair length: <<textbox "$activeSlave.hLength" $activeSlave.hLength>>
    
    <br>
    ''Her hair is $activeSlave.hColor in color''
    Custom hair color: <<textbox "$activeSlave.hColor" $activeSlave.hColor>>
    <br>
    //For best results, use a short, uncapitalized and unpunctuated description; for example: 'black with purple highlights'//
    
    <br>
    ''Her pubic hair is $activeSlave.pubicHColor in color''
    Custom pubic hair color: <<textbox "$activeSlave.pubicHColor" $activeSlave.pubicHColor>>
    
    <br>
    ''Pubic Hair Style: ($activeSlave.pubicHStyle)''
    <<radiobutton "$activeSlave.pubicHStyle" "neat">> Neat
    <<radiobutton "$activeSlave.pubicHStyle" "waxed">> Waxed
    <<radiobutton "$activeSlave.pubicHStyle" "in a strip">> Strip
    <<radiobutton "$activeSlave.pubicHStyle" "bushy">> Bushy
    <<radiobutton "$activeSlave.pubicHStyle" "hairless">> Hairless
    
    <br><br>
    
    ''Her eyes are $activeSlave.eyeColor in color''
    Custom eye color: <<textbox "$activeSlave.eyeColor" $activeSlave.eyeColor>>
    
    <br>
    ''Her vision is (-1: nearsighted, 1: normal): $activeSlave.eyes''
    <br>Eyes: <<textbox "$activeSlave.eyes" $activeSlave.eyes>>
    <<radiobutton "$activeSlave.eyes" 1>> Normal
    <<radiobutton "$activeSlave.eyes" -1>> Nearsighted
    
    <br><br>
    
    ''Change her custom tattoo:'' <<textbox "$activeSlave.customTat" $activeSlave.customTat>>
    <br>
    //For best results, use complete, capitalized and punctuated sentences; for example: 'She has blue stars tattooed along her cheekbones, and a blue arrow down each arm.'//
    
    <br>
    ''Change her custom description:'' <<textbox "$activeSlave.customDesc" $activeSlave.customDesc>>
    <br>
    //For best results, use complete, capitalized and punctuated sentences; for example: 'She has a beauty mark above her left nipple.'//
    
    <br>
    ''Change her custom label:'' <<textbox "$activeSlave.customLabel" $activeSlave.customLabel>>
    <br>
    //For best results, use a short phrase; for example: 'Breeder.'//
    
    <br><br>
    
    ''Face (-3 to 3): $activeSlave.face |''
    <<textbox "$activeSlave.face" $activeSlave.face>>
    <br>
    <<radiobutton "$activeSlave.face" -3>> Very ugly
    <<radiobutton "$activeSlave.face" -2>> Ugly
    <<radiobutton "$activeSlave.face" -1>> Unattractive
    <<radiobutton "$activeSlave.face" -0>> Pretty
    <<radiobutton "$activeSlave.face" 1>> Attractive
    <<radiobutton "$activeSlave.face" 2>> Beautiful
    <<radiobutton "$activeSlave.face" 3>> Very beautiful
    <br>
    
    ''Face Shape: $activeSlave.faceShape |''
    <<textbox "$activeSlave.faceShape" $activeSlave.faceShape>>
    <br>
    <<radiobutton "$activeSlave.faceShape" masculine>> Masculine
    <<radiobutton "$activeSlave.faceShape" androgynous>> Androgynous
    <<radiobutton "$activeSlave.faceShape" normal>> Normal
    <<radiobutton "$activeSlave.faceShape" cute>> Cute
    <<radiobutton "$activeSlave.faceShape" sensual>> Sensual
    <<radiobutton "$activeSlave.faceShape" exotic>> Exotic
    
    <br>
    
    ''Face Implant (0 to 2): $activeSlave.faceImplant |''
    <<radiobutton "$activeSlave.faceImplant" 0>> None
    <<radiobutton "$activeSlave.faceImplant" 1>> Some Work
    <<radiobutton "$activeSlave.faceImplant" 2>> Totally Reworked
    
    <br>
    
    ''Natural Skin Distinctiveness: $activeSlave.markings |''
    <<textbox "$activeSlave.markings" $activeSlave.markings>>
    <br>
    <<radiobutton "$activeSlave.markings" none>> None
    <<radiobutton "$activeSlave.markings" freckles>> Freckles
    <<radiobutton "$activeSlave.markings" heavily freckled>> Heavy Freckles
    <<radiobutton "$activeSlave.markings" beauty mark>> Beauty Mark
    <<radiobutton "$activeSlave.markings" birthmark>> Birth Mark
    
    <br>
    
    ''Oral sex (0 to 100):''
    <<if $activeSlave.oralSkill <= 10>>
    Unskilled.
    <<elseif $activeSlave.oralSkill <= 30>>
    @@color:cyan;Basic.@@
    <<elseif $activeSlave.oralSkill <= 60>>
    @@color:cyan;Skilled.@@
    <<elseif $activeSlave.oralSkill < 100>>
    @@color:cyan;Expert.@@
    <<else>>
    @@color:cyan;Masterful.@@
    <</if>>
    <<textbox "$activeSlave.oralSkill" $activeSlave.oralSkill>>
    <br>
    <<radiobutton "$activeSlave.oralSkill" 0>> Unskilled
    <<radiobutton "$activeSlave.oralSkill" 15>> Basic
    <<radiobutton "$activeSlave.oralSkill" 35>> Skilled
    <<radiobutton "$activeSlave.oralSkill" 65>> Expert
    <<radiobutton "$activeSlave.oralSkill" 100>> Masterful
    
    <br>
    
    ''Prestige:''
    <<textbox "$activeSlave.prestige" $activeSlave.prestige>>
    <<radiobutton "$activeSlave.prestige" 0>> 0
    <<radiobutton "$activeSlave.prestige" 1>> 1
    <<radiobutton "$activeSlave.prestige" 2>> 2
    <<radiobutton "$activeSlave.prestige" 3>> 3
    
    <br>
    
    ''Prestige description:''
    <<textbox "$activeSlave.prestigeDesc" $activeSlave.prestigeDesc>>
    
    <br><br>
    
    ''Muscles (0 to 3): $activeSlave.muscles |''
    <<textbox "$activeSlave.muscles" $activeSlave.muscles>>
    <br>
    <<radiobutton "$activeSlave.muscles" 0>> None
    <<radiobutton "$activeSlave.muscles" 20>> Tone
    <<radiobutton "$activeSlave.muscles" 50>> Muscular
    <<radiobutton "$activeSlave.muscles" 100>> Hugely Muscular
    
    <br>
    
    ''Height: $activeSlave.height |''
    <<textbox "$activeSlave.height" $activeSlave.height>>
    <br>
    (149 or lower: Petite, 150-159: Short, 160-169: Average, 170-184: Tall, 185 or higher: Very Tall)
    
    <br>
    
    ''Height Implant (-1 to 1): $activeSlave.heightImplant |''
    <<textbox "$activeSlave.heightImplant" $activeSlave.heightImplant>>
    <br>
    <<radiobutton "$activeSlave.heightImplant" -1>> Artificially Shortened
    <<radiobutton "$activeSlave.heightImplant" 0>> Normal
    <<radiobutton "$activeSlave.heightImplant" 1>> Artificially Lengthened
    
    <br><br>
    
    ''Lips (0 to 100): $activeSlave.lips |''
    <<textbox "$activeSlave.lips" $activeSlave.lips>>
    <br>
    <<radiobutton "$activeSlave.lips" 0>> Thin
    <<radiobutton "$activeSlave.lips" 15>> Normal
    <<radiobutton "$activeSlave.lips" 35>> Plush
    <<radiobutton "$activeSlave.lips" 65>> Big
    <<radiobutton "$activeSlave.lips" 85>> Huge
    <<radiobutton "$activeSlave.lips" 100>> Enormous facepussy
    <br>
    ''Lip Implants (0 to 30): $activeSlave.lipsImplant |''
    <<radiobutton "$activeSlave.lipsImplant" 0>> None
    <<radiobutton "$activeSlave.lipsImplant" 10>> Normal
    <<radiobutton "$activeSlave.lipsImplant" 20>> Large
    <<radiobutton "$activeSlave.lipsImplant" 30>> Enormous
    
    <br>
    ''Teeth: $activeSlave.teeth |''
    <<textbox "$activeSlave.teeth" $activeSlave.teeth>>
    <br>
    <<radiobutton "$activeSlave.teeth" normal>> Normal
    <<radiobutton "$activeSlave.teeth" pointy>> Pointy
    <<radiobutton "$activeSlave.teeth" crooked>> Crooked
    <<radiobutton "$activeSlave.teeth" straightening braces>> Straightening Braces
    <<radiobutton "$activeSlave.teeth" cosmetic braces>> Cosmetic Braces
    <<radiobutton "$activeSlave.teeth" removable>> Removable
    
    <br>
    ''Voice (0,1,2,3): $activeSlave.voice |''
    <<textbox "$activeSlave.voice" $activeSlave.voice>>
    <br>
    <<radiobutton "$activeSlave.voice" 0>> Mute
    <<radiobutton "$activeSlave.voice" 1>> Deep
    <<radiobutton "$activeSlave.voice" 2>> Normal
    <<radiobutton "$activeSlave.voice" 3>> High
    
    <br><br>
    
    ''Weight (-100 to 100):''
    <<if $activeSlave.weight < -95>>
    @@color:red;Emaciated.@@
    <<elseif $activeSlave.weight < -30>>
    @@color:red;Skinny.@@
    <<elseif $activeSlave.weight < -10>>
    Thin.
    <<elseif $activeSlave.weight <= 10 >>
    Average.
    <<elseif $activeSlave.weight <= 30>>
    Plush.
    <<elseif $activeSlave.weight <= 95>>
    @@color:red;Chubby.@@
    <<else>>
    @@color:red;Fat.@@
    <</if>>
    <<textbox "$activeSlave.weight" $activeSlave.weight>>
    <br>
    <<radiobutton "$activeSlave.weight" -100>> Emaciated
    <<radiobutton "$activeSlave.weight" -50>> Skinny
    <<radiobutton "$activeSlave.weight" -20>> Thin
    <<radiobutton "$activeSlave.weight" 0>> Average
    <<radiobutton "$activeSlave.weight" 20>> Plush
    <<radiobutton "$activeSlave.weight" 50>> Chubby
    <<radiobutton "$activeSlave.weight" 100>> Fat
    
    <br>
    
    ''Waist (normal:0 | hourglass:1): "$activeSlave.waist" |''
    <<textbox "$activeSlave.waist" $activeSlave.waist>>
    <br>
    <<radiobutton "$activeSlave.waist" 0>> Normal
    <<radiobutton "$activeSlave.waist" 1>> Hourglass
    
    <br><br>
    
    ''Shoulders (-2 to 2): $activeSlave.shoulders |''
    <<radiobutton "$activeSlave.shoulders" -2>> Very narrow
    <<radiobutton "$activeSlave.shoulders" -1>> Narrow
    <<radiobutton "$activeSlave.shoulders" -0>> Normal
    <<radiobutton "$activeSlave.shoulders" 1>> Broad
    <<radiobutton "$activeSlave.shoulders" 2>> Very broad
    
    <br>
    
    ''Shoulder Surgery (-2 to 2): $activeSlave.shouldersImplant |''
    <<radiobutton "$activeSlave.shouldersImplant" -2>> Adv. Narrowed
    <<radiobutton "$activeSlave.shouldersImplant" -1>> Narrowed
    <<radiobutton "$activeSlave.shouldersImplant" -0>> None
    <<radiobutton "$activeSlave.shouldersImplant" 1>> Broadened
    <<radiobutton "$activeSlave.shouldersImplant" 2>> Adv. Broadened
    
    <br>
    
    ''Hips (-2 to 2): $activeSlave.hips |''
    <<radiobutton "$activeSlave.hips" -2>> Very narrow
    <<radiobutton "$activeSlave.hips" -1>> Narrow
    <<radiobutton "$activeSlave.hips" -0>> Normal
    <<radiobutton "$activeSlave.hips" 1>> Broad
    <<radiobutton "$activeSlave.hips" 2>> Very broad
    
    <br>
    
    ''Hip Surgery(-2 to 2): $activeSlave.hipsImplant |''
    <<radiobutton "$activeSlave.hipsImplant" -2>> Adv. Narrowed
    <<radiobutton "$activeSlave.hipsImplant" -1>> Narrowed
    <<radiobutton "$activeSlave.hipsImplant" -0>> None
    <<radiobutton "$activeSlave.hipsImplant" 1>> Broadened
    <<radiobutton "$activeSlave.hipsImplant" 2>> Adv. Broadened
    
    <br><br>
    
    ''Amputated (0:normal, 1: amputated, -1 to -5 prosthetic limbs):'' $activeSlave.amp
    <<textbox "$activeSlave.amp" $activeSlave.amp>>
    <br>
    <<radiobutton "$activeSlave.amp" 0>> Normal
    <<radiobutton "$activeSlave.amp" 1>> Amputated
    <<radiobutton "$activeSlave.amp" -1>> Basic prosthetic limbs
    <<radiobutton "$activeSlave.amp" -2>> Sexy prosthetic limbs
    <<radiobutton "$activeSlave.amp" -3>> Beauty prosthetic limbs
    <<radiobutton "$activeSlave.amp" -4>> Combat prosthetic limbs
    <<radiobutton "$activeSlave.amp" -5>> Cybernetic limbs
    
    <br><br>
    
    ''Breasts (200 to 24000):''
    <<textbox "$activeSlave.boobs" $activeSlave.boobs>>
    <br>
    ''Breast Implants:''
    <<textbox "$activeSlave.boobsImplant" $activeSlave.boobsImplant>>
    <br>
    ''Breast String Implants (no:0 | yes:1):''
    <<textbox "$activeSlave.boobsImplantType" $activeSlave.boobsImplantType>>
    <<radiobutton "$activeSlave.boobsImplantType" 0>> No
    <<radiobutton "$activeSlave.boobsImplantType" 1>> Yes
    <br>
    
    ''Lactation (none:0 | natural:1 | artificial:2): $activeSlave.lactation |''
    <<textbox "$activeSlave.lactation" $activeSlave.lactation>>
    <br>
    <<radiobutton "$activeSlave.lactation" 0>> None
    <<radiobutton "$activeSlave.lactation" 1>> Natural
    <<radiobutton "$activeSlave.lactation" 2>> Artificial
    
    <br><br>
    
    ''Breast Shape: $activeSlave.boobShape |''
    <<textbox "$activeSlave.boobShape" $activeSlave.boobShape>>
    <br>
    <<radiobutton "$activeSlave.boobShape" "perky">> perky
    <<radiobutton "$activeSlave.boobShape" "torpedo-shaped">> torpedo-shaped
    <<radiobutton "$activeSlave.boobShape" "wide-set">> wide-set
    <<radiobutton "$activeSlave.boobShape" "downward-facing">> downward-facing
    <<radiobutton "$activeSlave.boobShape" "saggy">> saggy
    
    <br>
    
    ''Nipples: $activeSlave.nipples |''
    <<radiobutton "$activeSlave.nipples" "tiny">> Tiny
    <<radiobutton "$activeSlave.nipples" "cute">> Cute
    <<radiobutton "$activeSlave.nipples" "puffy">> Puffy
    <<radiobutton "$activeSlave.nipples" "inverted">> Inverted
    <<radiobutton "$activeSlave.nipples" "huge">> Huge
    
    <br>
    
    ''Areolae (Normal:0 to Huge:3): $activeSlave.areolae |''
    <<textbox "$activeSlave.areolae" $activeSlave.areolae>>
    <br>
    <<radiobutton "$activeSlave.areolae" 0>> Normal
    <<radiobutton "$activeSlave.areolae" 1>> Large
    <<radiobutton "$activeSlave.areolae" 2>> Wide
    <<radiobutton "$activeSlave.areolae" 3>> Huge
    
    <br><br>
    
    ''Butt Size (1 to 7): ''
    <<textbox "$activeSlave.butt" $activeSlave.butt>>
    <br>
    ''Butt Implants (0,1,2,3): $activeSlave.buttImplant'' |
    <<radiobutton "$activeSlave.buttImplant" 0>> None
    <<radiobutton "$activeSlave.buttImplant" 1>> Normal
    <<radiobutton "$activeSlave.buttImplant" 2>> Large
    <<radiobutton "$activeSlave.buttImplant" 3>> Huge
    <br>
    ''Butt String Implants (no:0 | yes:1):''
    <<textbox "$activeSlave.buttImplantType" $activeSlave.boobsImplantType>>
    <<radiobutton "$activeSlave.buttImplantType" 0>> No
    <<radiobutton "$activeSlave.buttImplantType" 1>> Yes
    
    <br><br>
    
    ''Anus Size:''
    <<if $activeSlave.anus == 0>>@@color:lime;Virgin.@@
    <<elseif $activeSlave.anus == 1>>Normal.
    <<elseif $activeSlave.anus == 2>>Veteran.
    <<else>>Gaping.
    <</if>>
    <br>
    <<radiobutton "$activeSlave.anus" 0>> Virgin
    <<radiobutton "$activeSlave.anus" 1>> Normal
    <<radiobutton "$activeSlave.anus" 2>> Veteran
    <<radiobutton "$activeSlave.anus" 3>> Gaping
    
    <br>
    
    ''Anal sex (0 to 100):''
    <<if $activeSlave.analSkill <= 10>>
    Unskilled.
    <<elseif $activeSlave.analSkill <= 30>>
    @@color:cyan;Basic.@@
    <<elseif $activeSlave.analSkill <= 60>>
    @@color:cyan;Skilled.@@
    <<elseif $activeSlave.analSkill < 100>>
    @@color:cyan;Expert.@@
    <<else>>
    @@color:cyan;Masterful.@@
    <</if>>
    <<textbox "$activeSlave.analSkill" $activeSlave.analSkill>>
    <br>
    <<radiobutton "$activeSlave.analSkill" 0>> Unskilled
    <<radiobutton "$activeSlave.analSkill" 15>> Basic
    <<radiobutton "$activeSlave.analSkill" 35>> Skilled
    <<radiobutton "$activeSlave.analSkill" 65>> Expert
    <<radiobutton "$activeSlave.analSkill" 100>> Masterful
    
    <br><br>
    
    ''Vagina (no vagina:-1,0,1,2,3):''
    
    <<if $activeSlave.vagina == -1>>
    
    //No vagina.//
    <<elseif $activeSlave.vagina == 0>>
    @@color:lime;Virgin.@@
    <<elseif $activeSlave.vagina == 1>>
    Normal.
    <<elseif $activeSlave.vagina == 2>>
    Veteran.
    <<else>>
    Gaping.
    <</if>>
    <<textbox "$activeSlave.vagina" $activeSlave.vagina>>
    <br>
    <<radiobutton "$activeSlave.vagina" -1>> No vagina
    <<radiobutton "$activeSlave.vagina" 0>> Virgin
    <<radiobutton "$activeSlave.vagina" 1>> Normal
    <<radiobutton "$activeSlave.vagina" 2>> Veteran
    <<radiobutton "$activeSlave.vagina" 3>> Gaping
    
    <br>
    
    ''Vagina Wetness (0,1,2):''
    <<if $activeSlave.vaginaLube == 0>>
    Dry.
    <<elseif $activeSlave.vaginaLube == 1>>
    Normal.
    <<else>>
    Excessive.
    <</if>>
    <<textbox "$activeSlave.vaginaLube" $activeSlave.vaginaLube>>
    <br>
    <<radiobutton "$activeSlave.vaginaLube" 0>> Dry
    <<radiobutton "$activeSlave.vaginaLube" 1>> Normal
    <<radiobutton "$activeSlave.vaginaLube" 2>> Excessive
    
    <br>
    
    ''Ovaries (none: 0 | exist: 1): $activeSlave.ovaries''
    <<if $activeSlave.ovaries == 1>>
    <<checkbox "$activeSlave.ovaries" 0 1 checked>>
    <<else>>
    <<checkbox "$activeSlave.ovaries" 0 1>>
    <</if>>
    
    <br>
    
    ''Vaginal sex (0 to 100):''
    <<if $activeSlave.vaginalSkill <= 10>>
    Unskilled.
    <<elseif $activeSlave.vaginalSkill <= 30>>
    @@color:cyan;Basic.@@
    <<elseif $activeSlave.vaginalSkill <= 60>>
    @@color:cyan;Skilled.@@
    <<elseif $activeSlave.vaginalSkill < 100>>
    @@color:cyan;Expert.@@
    <<else>>
    @@color:cyan;Masterful.@@
    <</if>>
    <<textbox "$activeSlave.vaginalSkill" $activeSlave.vaginalSkill>>
    <br>
    <<radiobutton "$activeSlave.vaginalSkill" 0>> Unskilled
    <<radiobutton "$activeSlave.vaginalSkill" 15>> Basic
    <<radiobutton "$activeSlave.vaginalSkill" 35>> Skilled
    <<radiobutton "$activeSlave.vaginalSkill" 65>> Expert
    <<radiobutton "$activeSlave.vaginalSkill" 100>> Masterful
    
    <br>
    
    ''Clit:''
    <<if $activeSlave.clit == 0>>
    Normal. |
    <<elseif $activeSlave.clit == 1>>
    Big. |
    <<elseif $activeSlave.clit == 2>>
    Huge. |
    <<else>>
    Enormous. |
    <</if>>
    <<radiobutton "$activeSlave.clit" 0>> Normal
    <<radiobutton "$activeSlave.clit" 1>> Large
    <<radiobutton "$activeSlave.clit" 2>> Huge
    <<radiobutton "$activeSlave.clit" 3>> Enormous
    &nbsp;&nbsp;&nbsp;&nbsp;
    
    <br>
    
    ''Labia:''
    <<if $activeSlave.labia == 0>>
    Minimal. |
    <<elseif $activeSlave.labia == 1>>
    Normal. |
    <<elseif $activeSlave.labia == 2>>
    Large. |
    <<else>>
    Huge. |
    <</if>>
    <<radiobutton "$activeSlave.labia" 0>> Minimal
    <<radiobutton "$activeSlave.labia" 1>> Normal
    <<radiobutton "$activeSlave.labia" 2>> Large
    <<radiobutton "$activeSlave.labia" 3>> Huge
    
    <br>
    
    ''Pregnancy Level (-2: sterile, -1: contraceptives, 0: not pregnant, 1 to 25: pregnant):''
    <<if $activeSlave.preg > 20>>
    Advanced.
    <<elseif $activeSlave.preg > 5>>
    Early.
    <<elseif $activeSlave.preg == 0>>
    None.
    <<elseif $activeSlave.preg == -1>>
    Using contraceptives.
    <<else>>
    Sterile.
    <</if>>
    <<textbox "$activeSlave.preg" $activeSlave.preg>>
    
    <br>
    ''Number of babies (0: none, 1 - 5):''
    <<if $activeSlave.pregType == 1>>
    A single baby.
    <<elseif $activeSlave.pregType == 2>>
    Twins.
    <<elseif $activeSlave.pregType == 3>>
    Triples.
    <<elseif $activeSlave.pregType == 4>>
    Quadruplets.
    <<elseif $activeSlave.pregType > 4>>
    Quintuplets.
    <<else>>
    None.
    <</if>>
    <<textbox "$activeSlave.pregType" $activeSlave.pregType>>
    <br>
    <<radiobutton "$activeSlave.pregType" 0>> None
    <<radiobutton "$activeSlave.pregType" 1>> Single
    <<radiobutton "$activeSlave.pregType" 2>> Twins
    <<radiobutton "$activeSlave.pregType" 3>> Triplets
    <<radiobutton "$activeSlave.pregType" 4>> Quadruplets
    <<radiobutton "$activeSlave.pregType" 5>> Quintuplets
    
    <br>
    ''Father (0: none, -1: you, -2: unknown, slave ID):''
    <<textbox "$activeSlave.pregSource" $activeSlave.pregSource>>
    
    <br><br>
    
    ''Penis (none:0, 1 to 10):''
    <<if $activeSlave.dick == 0>>
    None.
    <<elseif $activeSlave.dick == 1>>
    Tiny.
    <<elseif $activeSlave.dick == 2>>
    Small.
    <<elseif $activeSlave.dick == 3>>
    Normal.
    <<elseif $activeSlave.dick == 4>>
    Large.
    <<elseif $activeSlave.dick == 5>>
    Massive.
    <<elseif $activeSlave.dick == 6>>
    Huger
    <<elseif $activeSlave.dick == 7>>
    Still huge.
    <<elseif $activeSlave.dick == 8>>
    Enormous.
    <<else>>
    Monstrous.
    <</if>>
    <<textbox "$activeSlave.dick" $activeSlave.dick>>
    <br>
    <<radiobutton "$activeSlave.dick" 0>> None
    <<radiobutton "$activeSlave.dick" 1>> Tiny
    <<radiobutton "$activeSlave.dick" 2>> Small
    <<radiobutton "$activeSlave.dick" 3>> Normal
    <<radiobutton "$activeSlave.dick" 4>> Large
    <<radiobutton "$activeSlave.dick" 5>> Massive
    <<radiobutton "$activeSlave.dick" 6>> Huge
    <<radiobutton "$activeSlave.dick" 7>> More Huge
    <<radiobutton "$activeSlave.dick" 8>> Enormous
    <<radiobutton "$activeSlave.dick" 9>> Monstrous
    <<radiobutton "$activeSlave.dick" 10>> Big McLargeHuge? I don't know. How many sizes are there?!?!?!
    
    <br>
    ''Foreskin (0 to 5):''
    <<if $activeSlave.foreskin == 0>> None.
    <<elseif $activeSlave.foreskin == 1>> Tiny.
    <<elseif $activeSlave.foreskin == 2>> Small.
    <<elseif $activeSlave.foreskin == 3>> Normal.
    <<elseif $activeSlave.foreskin == 4>> Large.
    <<else>>Massive.<</if>>
    <<textbox "$activeSlave.foreskin" $activeSlave.foreskin>>
    <br>
    <<radiobutton "$activeSlave.foreskin" 0>> None
    <<radiobutton "$activeSlave.foreskin" 1>> Vestigial
    <<radiobutton "$activeSlave.foreskin" 2>> Small
    <<radiobutton "$activeSlave.foreskin" 3>> Normal
    <<radiobutton "$activeSlave.foreskin" 4>> Large
    <<radiobutton "$activeSlave.foreskin" 5>> Massive
    
    <br>
    
    ''Testicles (0 to 6):''
    <<if $activeSlave.balls == 0>>
    None.
    <<elseif $activeSlave.balls == 1>>
    Vestigial.
    <<elseif $activeSlave.balls == 2>>
    Small.
    <<elseif $activeSlave.balls == 3>>
    Normal.
    <<elseif $activeSlave.balls == 4>>
    Large.
    <<elseif $activeSlave.balls == 5>>
    Huge.
    <<else>>
    Titanic.
    <</if>>
    <<textbox "$activeSlave.balls" $activeSlave.balls>>
    <br>
    <<radiobutton "$activeSlave.balls" 0>> None / Invisible
    <<radiobutton "$activeSlave.balls" 1>> Vestigial
    <<radiobutton "$activeSlave.balls" 2>> Small
    <<radiobutton "$activeSlave.balls" 3>> Normal
    <<radiobutton "$activeSlave.balls" 4>> Large
    <<radiobutton "$activeSlave.balls" 5>> Huge
    <<radiobutton "$activeSlave.balls" 6>> Titanic
    
    <br>
    
    ''Ballsack (0 to 8):''
    <<if $activeSlave.scrotum == 0>>
    None.
    <<elseif $activeSlave.scrotum == 1>>
    Vestigial.
    <<elseif $activeSlave.scrotum == 2>>
    Small.
    <<elseif $activeSlave.scrotum == 3>>
    Normal.
    <<elseif $activeSlave.scrotum == 4>>
    Large.
    <<elseif $activeSlave.scrotum == 5>>
    Huge.
    <<elseif $activeSlave.scrotum == 6>>
    Massive.
    <<elseif $activeSlave.scrotum == 7>>
    Enormous.
    <<else>>
    Monstrous.
    <</if>>
    <<textbox "$activeSlave.scrotum" $activeSlave.scrotum>>
    <br>
    <<radiobutton "$activeSlave.scrotum" 0>> None
    <<radiobutton "$activeSlave.scrotum" 1>> Vestigial
    <<radiobutton "$activeSlave.scrotum" 2>> Small
    <<radiobutton "$activeSlave.scrotum" 3>> Normal
    <<radiobutton "$activeSlave.scrotum" 4>> Large
    <<radiobutton "$activeSlave.scrotum" 5>> Huge
    <<radiobutton "$activeSlave.scrotum" 6>> Massive
    <<radiobutton "$activeSlave.scrotum" 7>> Enormous
    <<radiobutton "$activeSlave.scrotum" 8>> Monstrous
    
    <br><br>
    
    ''Prostitution (0 to 100):''
    <<if $activeSlave.whoreSkill <= 10>>
    Unskilled.
    <<elseif $activeSlave.whoreSkill <= 30>>
    @@color:cyan;Basic.@@
    <<elseif $activeSlave.whoreSkill <= 60>>
    @@color:cyan;Skilled.@@
    <<elseif $activeSlave.whoreSkill < 100>>
    @@color:cyan;Expert.@@
    <<else>>
    @@color:cyan;Masterful.@@
    <</if>>
    <<textbox "$activeSlave.whoreSkill" $activeSlave.whoreSkill>>
    <br>
    <<radiobutton "$activeSlave.whoreSkill" 0>> Unskilled
    <<radiobutton "$activeSlave.whoreSkill" 15>> Basic
    <<radiobutton "$activeSlave.whoreSkill" 35>> Skilled
    <<radiobutton "$activeSlave.whoreSkill" 65>> Expert
    <<radiobutton "$activeSlave.whoreSkill" 100>> Masterful
    
    <br>
    
    ''Entertainment (0 to 100):''
    <<if $activeSlave.entertainSkill <= 10>>
    Unskilled.
    <<elseif $activeSlave.entertainSkill <= 30>>
    @@color:cyan;Basic.@@
    <<elseif $activeSlave.entertainSkill <= 60>>
    @@color:cyan;Skilled.@@
    <<elseif $activeSlave.entertainSkill < 100>>
    @@color:cyan;Expert.@@
    <<else>>
    @@color:cyan;Masterful.@@
    <</if>>
    <<textbox "$activeSlave.entertainSkill" $activeSlave.entertainSkill>>
    <br>
    <<radiobutton "$activeSlave.entertainSkill" 0>> Unskilled
    <<radiobutton "$activeSlave.entertainSkill" 15>> Basic
    <<radiobutton "$activeSlave.entertainSkill" 35>> Skilled
    <<radiobutton "$activeSlave.entertainSkill" 65>> Expert
    <<radiobutton "$activeSlave.entertainSkill" 100>> Masterful
    
    <br>
    
    ''Combat (0,1):''
    <<if $activeSlave.combatSkill == 0>>
    Unskilled.
    <<else>>
    @@color:cyan;Skilled.@@
    <</if>>
    <<radiobutton "$activeSlave.combatSkill" 0>> Unskilled
    <<radiobutton "$activeSlave.combatSkill" 1>> Skilled
    
    <br><br>
    
    ''Intelligence (-3 to 3):''
    <<if $activeSlave.intelligence == 3>>
    @@color:deepskyblue;Brilliant.@@
    <<elseif $activeSlave.intelligence == 2>>
    @@color:deepskyblue;Very Smart.@@
    <<elseif $activeSlave.intelligence == 1>>
    @@color:deepskyblue;Smart.@@
    <<elseif $activeSlave.intelligence == 0>>
    Average.
    <<elseif $activeSlave.intelligence == -1>>
    @@color:orangered;Stupid.@@
    <<elseif $activeSlave.intelligence == -2>>
    @@color:orangered;Very Stupid.@@
    <<else>>
    @@color:orangered;Moronic.@@
    <</if>>
    <<textbox "$activeSlave.intelligence" $activeSlave.intelligence>>
    <br>
    <<radiobutton "$activeSlave.intelligence" -3>> Moronic
    <<radiobutton "$activeSlave.intelligence" -2>> Very Stupid
    <<radiobutton "$activeSlave.intelligence" -1>> Stupid
    <<radiobutton "$activeSlave.intelligence" 0>> Average
    <<radiobutton "$activeSlave.intelligence" 1>> Smart
    <<radiobutton "$activeSlave.intelligence" 2>> Very Smart
    <<radiobutton "$activeSlave.intelligence" 3>> Brilliant
    
    <br>
    
    ''Education (0,1):''
    <<if $activeSlave.intelligenceImplant == 1>>
    @@color:deepskyblue;Educated.@@
    <<else>>
    Uneducated.
    <</if>>
    <<radiobutton "$activeSlave.intelligenceImplant" 0>> Uneducated
    <<radiobutton "$activeSlave.intelligenceImplant" 1>> Educated
    
    <br><br>
    
    ''Fetish Known (Unknown:0 | Known:1): $activeSlave.fetishKnown |''
    <<radiobutton "$activeSlave.fetishKnown" 0>> Unknown
    <<radiobutton "$activeSlave.fetishKnown" 1>> Known
    
    <br>
    
    
    <<if $activeSlave.fetish == "none">>
    
    ''Fetish:'' @@color:pink;$activeSlave.fetish.@@
    <<else>>
    ''Fetish:'' @@color:lightcoral;$activeSlave.fetish.@@
    <</if>>
    <br>
    <<radiobutton "$activeSlave.fetish" "none">> None
    <<radiobutton "$activeSlave.fetish" "submissive">> Submissive
    <<radiobutton "$activeSlave.fetish" "dom">> Dom
    <<radiobutton "$activeSlave.fetish" "cumslut">> Cumslut
    <<radiobutton "$activeSlave.fetish" "humiliation">> Humiliation
    <<radiobutton "$activeSlave.fetish" "buttslut">> Buttslut
    <<radiobutton "$activeSlave.fetish" "boobs">> Boobs
    <<radiobutton "$activeSlave.fetish" "pregnancy">> Pregnancy
    <<radiobutton "$activeSlave.fetish" "sadist">> Sadist
    <<radiobutton "$activeSlave.fetish" "masochist">> Masochist
    
    <br>
    
    ''Fetish strength (0 to 100):''
    <<if $activeSlave.fetishStrength > 95>>
    @@color:lightcoral;High.@@
    <<elseif $activeSlave.fetishStrength <= 60>>
    @@color:pink;Low.@@
    <<else>>
    @@color:hotpink;Normal.@@
    <</if>>
    <<textbox "$activeSlave.fetishStrength" $activeSlave.fetishStrength>>
    <br>
    <<radiobutton "$activeSlave.fetishStrength" 0>> Low
    <<radiobutton "$activeSlave.fetishStrength" 70>> Normal
    <<radiobutton "$activeSlave.fetishStrength" 100>> High
    
    <br><br>
    
    ''Sexuality (unknown:0 | known:1):'' $activeSlave.attrKnown
    <<radiobutton "$activeSlave.attrKnown" 0>> Unknown
    <<radiobutton "$activeSlave.attrKnown" 1>> Known
    
    <br>
    
    ''Male Attraction (0 - 100):''
    <<if $activeSlave.attrXY <= 5>>
    	@@color:red;Disgusted by guys,@@
    <<elseif $activeSlave.attrXY <= 15>>
    	@@color:red;Turned off by guys,@@
    <<elseif $activeSlave.attrXY <= 35>>
    	@@color:red;Not attracted to guys,@@
    <<elseif $activeSlave.attrXY <= 65>>
    	Indifferent to guys,
    <<elseif $activeSlave.attrXY <= 85>>
    	@@color:green;Attracted to guys,@@
    <<elseif $activeSlave.attrXY <= 95>>
    	@@color:green;Aroused by guys,@@
    <<else>>
    	@@color:green;Passionate about guys,@@
    <</if>>
    <<textbox "$activeSlave.attrXY" $activeSlave.attrXY>>
    <br>
    <<radiobutton "$activeSlave.attrXY" 0>> Disgusted by guys
    <<radiobutton "$activeSlave.attrXY" 10>> Turned off by guys
    <<radiobutton "$activeSlave.attrXY" 20>> Not attracted to guys
    <<radiobutton "$activeSlave.attrXY" 50>> Indifferent to guys
    <<radiobutton "$activeSlave.attrXY" 80>> Attracted to guys
    <<radiobutton "$activeSlave.attrXY" 90>> Aroused by guys
    <<radiobutton "$activeSlave.attrXY" 100>> Passionate about guys
    
    <br>
    
    ''Female Attraction (0 - 100):''
    <<if $activeSlave.attrXX <= 5>>
    	@@color:red;disgusted by girls.@@
    <<elseif $activeSlave.attrXX <= 15>>
    	@@color:red;turned off by girls.@@
    <<elseif $activeSlave.attrXX <= 35>>
    	@@color:red;not attracted to girls.@@
    <<elseif $activeSlave.attrXX <= 65>>
    	indifferent to girls.
    <<elseif $activeSlave.attrXX <= 85>>
    	@@color:green;attracted to girls.@@
    <<elseif $activeSlave.attrXX <= 95>>
    	@@color:green;aroused by girls.@@
    <<else>>
    	@@color:green;passionate about girls.@@
    <</if>>
    <<textbox "$activeSlave.attrXX" $activeSlave.attrXX>>
    <br>
    <<radiobutton "$activeSlave.attrXX" 0>> Disgusted by girls
    <<radiobutton "$activeSlave.attrXX" 10>> Turned off by girls