<!--QuoteBegin-Pieter Boelen+Sep 7 2005, 12:55 PM--><div class='quotetop'>QUOTE(Pieter Boelen @ Sep 7 2005, 12:55 PM)</div><div class='quotemain'><!--QuoteEBegin-->Check below code from the Redmond character ini file. That should show you how to change a character's ship model:
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->makeref(ch,Characters[n]); //Robert Christopher Silehard - ãóáåðÃà òîð
ch.name = "Robert";
ch.middlename = "Christopher";
ch.lastname = "Silehard";
...
ch.skill.Commerce = "10";
ch.skill.Sneak = "0";
Interesting part -->
ch.Ship.Name = "Belette";
ch.Ship.Type = "Manowar_gub"; // PRS3, 05-05-10 change from 1 to gub
ch.Ship.Stopped = true; [What does this line do anyway?]
// KNB ch.Ship.Cannons.Type = CANNON_TYPE_CULVERINE_LBS24;
ch.money = "100000";
<-- Interesting part
LAi_SetHuberStayType(ch);
...<!--c2--></div><!--ec2-->
Then I reckon you can add something like this to the reinit file to make the change take effect in an already started game:
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->ch = CharacterFromID("Robert Christopher Silehard"); // Cat AQ improvements
ch.Ship.Name = "Belette";
ch.Ship.Type = "Manowar_gub"; // PRS3, 05-05-10 change from 1 to gub
ch.Ship.Stopped = true; [What does this line do anyway?]
// KNB ch.Ship.Cannons.Type = CANNON_TYPE_CULVERINE_LBS24;
ch.money = "100000";<!--c2--></div><!--ec2-->
I hope this helps you. <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/me.gif" style="vertical-align:middle" emoid="

" border="0" alt="me.gif" />
<div align="right">[snapback]129975[/snapback]</div><!--QuoteEnd--></div><!--QuoteEEnd-->
This is what I had done:
in Tempquestcharacters.c:
ref ch;
makeref(ch,Characters[n]); // Ethilrede Claar - ïèðà ò, êîòîðûé ïðîäà ë â ðà áñòâî îäÃîãî èç Ãà øèõ îôèöåðîâ () Leborio Drago
ch.name = "Ethilrede";
ch.lastname = "Dubois";
ch.id = "Ethilrede Claar";
ch.model = "corsar2";
ch.sex = "man";
ch.sound_type = "pirate";
ch.Ship.AI.GroupName = "Ethilrede Claar";
ch.Ship.AI.Task = "attack";
ch.nation = PIRATE;
GiveItem2Character(ch, BLADE_SABER);
ch.equip.blade = BLADE_SABER;
ch.nodisarm = 1; // PB: Disable disarming
ch.location = "none";
ch.location.group = "Quest_ships";
ch.location.locator = "quest_ship_11";
ch.Dialog.Filename = "Gyles Dubois_dialog.c";
ch.Ship.Name = "Neptunus";
ch.Ship.Type = "Corvette6_50"; // was Corvette1 // PRS3
ch.Ship.Stopped = true;
// KNB ch.Ship.Cannons.Type = CANNON_TYPE_CANNON_LBS24;
ch.rank = 1;
ch.reputation = "22";
ch.experience = "0";
ch.skill.Leadership = "1";
ch.skill.Fencing = "4";
ch.skill.Sailing = "5";
ch.skill.Accuracy = "4";
ch.skill.Cannons = "6";
ch.skill.Grappling = "1";
ch.skill.Repair = "1";
ch.skill.Defence = "2";
ch.skill.Commerce = "1";
ch.skill.Sneak = "1";
ch.money = "10";
LAi_SetMerchantType(ch);
LAi_SetLoginTime(ch, 0.0, 24.0);
LAi_SetHP(ch, 80.0, 80.0);
LAi_NoRebirthEnable(ch);
ch.greeting = "Gr_Gyles Dubois";
n = n + 1;
in Reinit.c:
ch = CharacterFromID("Ethilrede Claar"); // aka shuggy garry
ch.Ship.Type = "Corvette6_50"; // was corvette1
---------------------------------------------------------------------------
That is what is not working.