Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Ajutor
#44
deci nu mai pot.. nu imi merge nici un npc pe care il bag!!!
nu stiu ce sa mai fac Sad(

imi da eroarea aia in startup

am facut asa:
copy paste un script al unui npc:
Quote:instance Sld_804_Rod(Npc_Default)
{
name[0] = "Rod";
guild = GIL_SLD;
id = 804;
voice = 6;
flags = 0;
npcType = npctype_main;
B_SetAttributesToChapter(self,2);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_2h_Rod);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_FatBald",Face_N_ToughBart01,BodyTex_N,itar_sld_M);
Mdl_SetModelFatness(self,2);
Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,50);
daily_routine = Rtn_Start_804;
};


func void Rtn_Start_804()
{
TA_Smalltalk(7,55,22,55,"NW_BIGFARM_PATH_02");
TA_Sleep(22,55,7,55,"NW_BIGFARM_HOUSE_SLD_SLEEP");
};

func void Rtn_Tot_804()
{
TA_Sleep(8,0,23,0,"TOT");
TA_Sleep(23,0,8,0,"TOT");
};

apoi am modificat numele npc-ului, id-ul(numarul) si rutina:

Quote:instance Sld_842_Badking(Npc_Default)
{
name[0] = "Badking";
guild = GIL_SLD;
id = 842;
voice = 6;
flags = 0;
npcType = npctype_main;
B_SetAttributesToChapter(self,2);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_2h_Rod);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_FatBald",Face_N_ToughBart01,BodyTex_N,itar_sld_M);
Mdl_SetModelFatness(self,2);
Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,50);
daily_routine = Rtn_Start_842;
};


func void Rtn_Start_842()
{
TA_Stand_ArmsCrossed(7,55,22,55,"NW_XARDAS_START");
TA_Stand_ArmsCrossed(22,55,7,55,"NW_XARDAS_START");
};
am intrat in startup.d si l-am pus:
Quote:func void STARTUP_NewWorld_Part_Xardas_01()
{
Wld_InsertItem(ItBe_Addon_STR_5,"FP_SPAWN_X_GUERTEL");
Wld_InsertNpc(NONE_100_Xardas,"NW_XARDAS_START");
Wld_InsertNpc(Sld_842_Badking,"NW_XARDAS_START");
Wld_InsertNpc(PC_Psionic,"NW_XARDAS_TOWER_PATH_01");
Wld_InsertItem(ItWr_StonePlateCommon_Addon,"FP_ITEM_XARDAS_STPLATE_01");

apoi am deschis GothicStarter.exe, am bifat "skripte parsen" si am dat "spiel starten"
ce altceva trebuie sa mai fac?

deci nu mai pot!!!!!!!
imi apare eroarea asta:

Show Content
replyReply


Messages In This Thread
Ajutor - by Cyrus35 - 03-04-2013, 08:36 PM
RE: Ajutor - by Robi - 03-04-2013, 08:45 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 08:51 PM
RE: Ajutor - by Robi - 03-04-2013, 08:55 PM
RE: Ajutor - by ThePaladinHero - 03-04-2013, 08:54 PM
RE: Ajutor - by ThePaladinHero - 03-04-2013, 09:07 PM
RE: Ajutor - by Robi - 03-04-2013, 09:10 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 09:18 PM
RE: Ajutor - by Robi - 03-04-2013, 09:19 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 09:31 PM
RE: Ajutor - by Robi - 03-04-2013, 09:33 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 09:43 PM
RE: Ajutor - by Robi - 03-04-2013, 09:48 PM
RE: Ajutor - by ThePaladinHero - 03-04-2013, 09:44 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 09:49 PM
RE: Ajutor - by ThePaladinHero - 03-04-2013, 09:50 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 09:58 PM
RE: Ajutor - by Robi - 03-04-2013, 10:01 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 10:10 PM
RE: Ajutor - by Robi - 03-04-2013, 10:23 PM
RE: Ajutor - by Cyrus35 - 03-04-2013, 11:23 PM
RE: Ajutor - by Szekemri - 03-05-2013, 10:46 AM
RE: Ajutor - by Robi - 03-05-2013, 12:11 PM
RE: Ajutor - by Szekemri - 03-05-2013, 12:40 PM
RE: Ajutor - by Cyrus35 - 03-08-2013, 09:13 PM
RE: Ajutor - by Robi - 03-08-2013, 09:55 PM
RE: Ajutor - by Szekemri - 03-08-2013, 09:58 PM
RE: Ajutor - by Cyrus35 - 03-09-2013, 08:46 AM
RE: Ajutor - by ThePaladinHero - 03-09-2013, 10:03 AM
RE: Ajutor - by Szekemri - 03-09-2013, 11:26 AM
RE: Ajutor - by ThePaladinHero - 03-09-2013, 12:25 PM
RE: Ajutor - by Cyrus35 - 03-09-2013, 01:03 PM
RE: Ajutor - by Robi - 03-09-2013, 01:16 PM
RE: Ajutor - by Cyrus35 - 03-09-2013, 01:50 PM
RE: Ajutor - by Robi - 03-09-2013, 02:35 PM
RE: Ajutor - by Cyrus35 - 03-09-2013, 05:14 PM
RE: Ajutor - by Szekemri - 03-09-2013, 05:20 PM
RE: Ajutor - by Cyrus35 - 03-09-2013, 05:31 PM
RE: Ajutor - by Szekemri - 03-09-2013, 05:47 PM
RE: Ajutor - by Cyrus35 - 03-09-2013, 06:02 PM
RE: Ajutor - by Szekemri - 03-09-2013, 06:16 PM
RE: Ajutor - by Cyrus35 - 03-09-2013, 07:56 PM
RE: Ajutor - by Szekemri - 03-09-2013, 08:46 PM
RE: Ajutor - by Cyrus35 - 03-12-2013, 05:01 PM
RE: Ajutor - by Szekemri - 03-16-2013, 10:57 AM
RE: Ajutor - by Cyrus35 - 03-16-2013, 05:49 PM
RE: Ajutor - by Szekemri - 03-16-2013, 07:37 PM
RE: Ajutor - by Cyrus35 - 03-16-2013, 08:19 PM
RE: Ajutor - by Szekemri - 03-16-2013, 08:30 PM
RE: Ajutor - by Robi - 03-16-2013, 08:49 PM
RE: Ajutor - by Cyrus35 - 03-16-2013, 09:13 PM
RE: Ajutor - by Szekemri - 03-17-2013, 12:26 AM
RE: Ajutor - by Robi - 03-17-2013, 10:19 PM
RE: Ajutor - by Robi - 03-16-2013, 10:15 PM
RE: Ajutor - by Robi - 03-17-2013, 01:43 PM
RE: Ajutor - by Cyrus35 - 03-17-2013, 09:16 PM
RE: Ajutor - by Robi - 03-17-2013, 09:19 PM
RE: Ajutor - by Cyrus35 - 03-17-2013, 09:28 PM
RE: Ajutor - by Robi - 03-17-2013, 09:31 PM
RE: Ajutor - by Cyrus35 - 03-17-2013, 10:05 PM
RE: Ajutor - by Cyrus35 - 03-17-2013, 10:27 PM
RE: Ajutor - by Robi - 03-17-2013, 10:33 PM
RE: Ajutor - by Cyrus35 - 03-17-2013, 10:55 PM
RE: Ajutor - by Robi - 03-17-2013, 11:15 PM
RE: Ajutor - by Robi - 03-18-2013, 12:17 AM
RE: Ajutor - by Szekemri - 03-18-2013, 09:44 AM
RE: Ajutor - by Robi - 03-18-2013, 10:29 AM
RE: Ajutor - by Szekemri - 03-18-2013, 04:40 PM
RE: Ajutor - by Robi - 03-18-2013, 08:52 PM
RE: Ajutor - by Cyrus35 - 03-18-2013, 08:58 PM

Forum Jump:


Users browsing this thread: 16 Guest(s)