Forum

> > Stranded II > General > more NPC in random island
ForenübersichtStranded II-ÜbersichtGeneral-ÜbersichtEinloggen, um zu antworten

Englisch more NPC in random island

2 Antworten
Zum Anfang Vorherige 1 Nächste Zum Anfang

alt more NPC in random island

Gast

Zitieren
When I start the random island i find always only 1 random NPC.
It is possible to have more ??
In try find this in scripts files but i can't find.
Please help.

alt Re: more NPC in random island

Azrael
User Off Offline

Zitieren
Stranded II\mods\Stranded II\sys\scripts\random_start.s2s

Remove the if '($event ==blah) {' lines and the }s that go with them.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
on:start {
	// ------------------------------------------------ Setup

	// Start Diary
	timer 0,1000,1,"stdiary";

	// Look at Island
	setrot "unit",1,"self",145,"self";

	// Include Random Events
	extendscript 0,0,"sys/scripts/random_events.s2s";


	// ------------------------------------------------ Create a Random Char

	// Chieftain
	$id=randomcreate("unit",40,50,1000000);
	addscript "unit",$id,"sys/scripts/random_charscripts.s2s","chieftain";

	// Hempguy
	$id=randomcreate("unit",38,50,1000000);
	addscript "unit",$id,"sys/scripts/random_charscripts.s2s","hempguy";

	// Native
	$id=randomcreate("unit",34,50,1000000);
	addscript "unit",$id,"sys/scripts/random_charscripts.s2s","native";

	// Pirate
	$id=randomcreate("unit",37,50,1000000);
	addscript "unit",$id,"sys/scripts/random_charscripts.s2s","pirate";

	// Prof
	$id=randomcreate("unit",41,50,1000000);
	addscript "unit",$id,"sys/scripts/random_charscripts.s2s","prof";

}
Zum Anfang Vorherige 1 Nächste Zum Anfang
Einloggen, um zu antwortenGeneral-ÜbersichtStranded II-ÜbersichtForenübersicht