The Betrayer Posted September 14, 2008 Share Posted September 14, 2008 I need a couple of scripts, namely: -spawn script -make 2 people hostile after dialog script Link to comment Share on other sites More sharing options...
Revnant Posted September 14, 2008 Share Posted September 14, 2008 I also need those aswell. Also i'm kinda lost at home to place an npc. I found it before but now I cant. It anyone can help point me in the right direction i'd appreciate it. Also how do I make it so the only dialoge that I want to have for one area stay for that area, basicly I need a couple of basic dialoge stuff for recruit npc's. Link to comment Share on other sites More sharing options...
Emperor Devon Posted September 14, 2008 Share Posted September 14, 2008 Spawning (insert your own coordinates in place of 0.0): void main() { CreateObject(OBJECT_TYPE_CREATURE, "http://lucasforums.com/showthread.php?t=143536", Location(Vector(0.0,0.0,0.0), 0.0)); } Making NPCs hostile: void main() { ChangeToStandardFaction(GetObjectByTag ("use the"), 1); ChangeToStandardFaction(GetObjectByTag ("search function"), 1); } Link to comment Share on other sites More sharing options...
Revnant Posted September 14, 2008 Share Posted September 14, 2008 Yeah sorry I found what I was looking for, i just didnt look hard enough the second time thank you though. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.