Difference between revisions of "Tutorials:TS3 GeneralModding"
From SimsWiki
m (→Career Modding) |
m (→Tutorials) |
||
Line 12: | Line 12: | ||
=====Programming in C#===== | =====Programming in C#===== | ||
*[[Sims 3:Creating a game compatible Visual Studio project]] - To learn how to setup your Visual Studio to do game mods. | *[[Sims 3:Creating a game compatible Visual Studio project]] - To learn how to setup your Visual Studio to do game mods. | ||
− | *[http://msdn.microsoft.com/en-us/library/dd492171.aspx|Beginners C# tutorials] - | + | *[http://msdn.microsoft.com/en-us/library/dd492171.aspx|Beginners C# tutorials] - Intended for Windows Forms applications, but excellent first exposure to C# anyway |
=====XML Tuning Mods===== | =====XML Tuning Mods===== | ||
Line 21: | Line 21: | ||
=====Interactions===== | =====Interactions===== | ||
− | * [http://www.den.simlogical.com/denforum/index.php?topic=1600.0 How to Make an ITUN for a Custom Interaction by NonaMena | + | * [http://www.den.simlogical.com/denforum/index.php?topic=1600.0 How to Make an ITUN for a Custom Interaction] by NonaMena |
− | * [http://www.den.simlogical.com/denforum/index.php?topic=1588.0 ITUN Modding Discussion and Explanation by NonaMena | + | * [http://www.den.simlogical.com/denforum/index.php?topic=1588.0 ITUN Modding Discussion and Explanation] by NonaMena |
− | * [http://www.den.simlogical.com/denforum/index.php?topic=1596.0 How to Inject an Interaction With a Pure Script Mod by NonaMena | + | * [http://www.den.simlogical.com/denforum/index.php?topic=1596.0 How to Inject an Interaction With a Pure Script Mod] by NonaMena |
− | * [http://www.modthesims.info/showthread.php?t=491875 Tutorial: Adding Pie Menu Options to Sims by CmarNYC | + | * [http://www.modthesims.info/showthread.php?t=491875 Tutorial: Adding Pie Menu Options to Sims] by CmarNYC |
=====Script Mods===== | =====Script Mods===== | ||
Line 33: | Line 33: | ||
* [[Tutorial:Sims_3_New_LTW|Sims 3 New Lifetime Wish (non-core)]] | * [[Tutorial:Sims_3_New_LTW|Sims 3 New Lifetime Wish (non-core)]] | ||
* [[Tutorial:Sims_3_Localized_Coding|Sims 3 Localized Coding]] | * [[Tutorial:Sims_3_Localized_Coding|Sims 3 Localized Coding]] | ||
− | * [http://www.den.simlogical.com/denforum/index.php?topic=1063 How to Create and Load Custom Moodlets with a Pure Script Mod by NonaMena | + | * [http://www.den.simlogical.com/denforum/index.php?topic=1063 How to Create and Load Custom Moodlets with a Pure Script Mod] by NonaMena |
* [http://nraas.wikispaces.com/Scripting+Core+FAQ Scripting Core FAQ] by Twallan (NB not core modding as such) | * [http://nraas.wikispaces.com/Scripting+Core+FAQ Scripting Core FAQ] by Twallan (NB not core modding as such) | ||
Line 47: | Line 47: | ||
=====Animations===== | =====Animations===== | ||
− | *[http://www.modthesims.info/showthread.php?t=445678 Making an Animation Sequence "Custom Animation" For Cmo's Animation/Pose Player by SeeMyu | + | *[http://www.modthesims.info/showthread.php?t=445678 Making an Animation Sequence "Custom Animation" For Cmo's Animation/Pose Player] by SeeMyu |
− | *[http://www.modthesims.info/showthread.php?t=377440 Turning game animations into AVI's by WesHowe | + | *[http://www.modthesims.info/showthread.php?t=377440 Turning game animations into AVI's] by WesHowe |
*[http://www.simswiki.info/wiki.php?title=Tutorial:Sims_3_Custom_Animations Creating Objects with Custom Animations for The Sims 3 (outdated)] | *[http://www.simswiki.info/wiki.php?title=Tutorial:Sims_3_Custom_Animations Creating Objects with Custom Animations for The Sims 3 (outdated)] | ||
*[http://www.youtube.com/watch?v=MAJbwfmEfIc Using The Sims 3 Animator - OUTDATED (see the tutorial in Basic Object Creation)] | *[http://www.youtube.com/watch?v=MAJbwfmEfIc Using The Sims 3 Animator - OUTDATED (see the tutorial in Basic Object Creation)] | ||
=====Poses===== | =====Poses===== | ||
− | *[http://www.simswiki.info/wiki.php?title=Tutorial:Sims_3_Pose_Creation Sims 3 Pose Creation for Milkshape by orangemittens | + | *[http://www.simswiki.info/wiki.php?title=Tutorial:Sims_3_Pose_Creation Sims 3 Pose Creation for Milkshape] by orangemittens |
*[http://www.simswiki.info/wiki.php?title=Tutorial:Sims_3_Making_Poses Complete Pose Making Tutorial using Milkshape for beginners] | *[http://www.simswiki.info/wiki.php?title=Tutorial:Sims_3_Making_Poses Complete Pose Making Tutorial using Milkshape for beginners] | ||
− | *[http://www.den.simlogical.com/denforum/index.php?PHPSESSID=4sju5hcrhu2l1ruf0nqdcft204&topic=916.msg6388#msg6388 Creating Custom Poses and Animations Using Blender by orangemittens | + | *[http://www.den.simlogical.com/denforum/index.php?PHPSESSID=4sju5hcrhu2l1ruf0nqdcft204&topic=916.msg6388#msg6388 Creating Custom Poses and Animations Using Blender] by orangemittens |
*[http://www.modthesims.info/showthread.php?t=469283 Using JAZZ and C# to make a non-default accessory for an object] | *[http://www.modthesims.info/showthread.php?t=469283 Using JAZZ and C# to make a non-default accessory for an object] | ||
Revision as of 20:54, 28 December 2012
Tutorials by Category | |
---|---|
CAS | Patterns | Objects | Building | Worlds | Modding | Modding Reference |
Contents |
Overview
A small guide to extracting and using the games animation files.
What will I need?
Each tutorial will list the tools needed, but here is a general list of Modding Tools.
Tutorials
Programming in C#
- Sims 3:Creating a game compatible Visual Studio project - To learn how to setup your Visual Studio to do game mods.
- C# tutorials - Intended for Windows Forms applications, but excellent first exposure to C# anyway
XML Tuning Mods
- Sims 3 XML Tuning Modding
- How to Check if a tuning mod requires an update
- How to Edit XML Tuning by Twallan
- How to Make an XML Tuning Mod by NonaMena
Interactions
- How to Make an ITUN for a Custom Interaction by NonaMena
- ITUN Modding Discussion and Explanation by NonaMena
- How to Inject an Interaction With a Pure Script Mod by NonaMena
- Tutorial: Adding Pie Menu Options to Sims by CmarNYC
Script Mods
- How I made a new toilet class with its own tuning
- Sims 3 Object Modding (aka Adding Interactions)
- Sims 3 Pure Scripting Modding
- Sims 3 New Lifetime Wish (non-core)
- Sims 3 Localized Coding
- How to Create and Load Custom Moodlets with a Pure Script Mod by NonaMena
- Scripting Core FAQ by Twallan (NB not core modding as such)
Core Mods
- Sims 3 Core Modding Basics
- IL and DLL overview / tutorial
- Core Modding Tutorial (For complete and total nincompoops, like me!)
Career Modding
- Complete Guide to Career Modding for Beginners! by Creon
- Making New Distributable Careers by Twallan
- Changing Career Names/Descriptions - Outdated
Animations
- Making an Animation Sequence "Custom Animation" For Cmo's Animation/Pose Player by SeeMyu
- Turning game animations into AVI's by WesHowe
- Creating Objects with Custom Animations for The Sims 3 (outdated)
- Using The Sims 3 Animator - OUTDATED (see the tutorial in Basic Object Creation)
Poses
- Sims 3 Pose Creation for Milkshape by orangemittens
- Complete Pose Making Tutorial using Milkshape for beginners
- Creating Custom Poses and Animations Using Blender by orangemittens
- Using JAZZ and C# to make a non-default accessory for an object
Miscellaneous Mods
- Creating Custom Sims 3 TV Channels by Odistant OUTDATED
- Catalog Reorganization & Hiders
- Adding A Custom Book Title To The Game
Miscellaneous
- Info on the LN/1.17 CTD issue with script-modded objects (Post #23 on)
Tutorials by Category | |
---|---|
CAS | Patterns | Objects | Building | Worlds | Modding | Modding Reference |