Mindtwistah Posted January 30, 2008 Share Posted January 30, 2008 Can someone tell me a script to make the PC and the whole party die? And I have a minor other question: When you want to show the name of your PC in dialog, do you type [FULLNAME] ? Link to comment Share on other sites More sharing options...
Marius Fett Posted January 30, 2008 Share Posted January 30, 2008 Not too sure about the script but if you want the PC's name to appear in dialog you have to type <FullName>. You can also use <FirstName> and <LastName> as well as several more. They're all listed in stringtokens.2da. Link to comment Share on other sites More sharing options...
stoffe Posted January 31, 2008 Share Posted January 31, 2008 Can someone tell me a script to make the PC and the whole party die? void main() { int i; for (i = 0; i < GetPartyMemberCount(); i++) { object oParty = GetPartyMemberByIndex(i); SetMinOneHP(oParty, FALSE); SetPlotFlag(oParty, FALSE); ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDeath(), oParty); } } Link to comment Share on other sites More sharing options...
Mindtwistah Posted January 31, 2008 Author Share Posted January 31, 2008 Thank you Stoffe DarthDingDong: What's the difference between <FirstName> and <LastName>? Does it display different things? Link to comment Share on other sites More sharing options...
Marius Fett Posted January 31, 2008 Share Posted January 31, 2008 Well say your PC's name is Muhammed Ali. If you enter <FirstName> it will say Muhammed in the conversation. But if you enter <LastName> it'll say Ali... Link to comment Share on other sites More sharing options...
Mindtwistah Posted January 31, 2008 Author Share Posted January 31, 2008 But what if you only name your PC Muhammed and enter <LastName> in a conversation? Will it say Muhammed since it is the last one, though it is the first one too? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.