Difference between revisions of "Tutorials:TS3 GeneralModding"

From SimsWiki
Jump to: navigation, search
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] - For Windows Forms applications really but excellent first exposure to C# anyway
+
*[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 15: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#
XML Tuning Mods
Interactions
Script Mods
Core Mods
Career Modding
Animations
Poses
Miscellaneous Mods

Miscellaneous


Tutorials by Category

CAS | Patterns | Objects | Building | Worlds | Modding | Modding Reference 

Personal tools
Namespaces

Variants
Actions
Navigation
game select
Toolbox