Added dialog to raise new players to 12th lvl
Added dialog to raise new players to 12th lvl
This commit is contained in:
15
_module/nss/ho_lvlup_pc.nss
Normal file
15
_module/nss/ho_lvlup_pc.nss
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "x0_i0_partywide"
|
||||
|
||||
void main()
|
||||
{
|
||||
//:: Declare major variables
|
||||
object oPC = GetEnteringObject();
|
||||
|
||||
int iParty = GetNumberPartyMembers(oPC);
|
||||
|
||||
if (iParty >= 2)
|
||||
return;
|
||||
|
||||
//ActionStartConversation(oPC, "ho_lvlup_pc", TRUE, FALSE);
|
||||
BeginConversation("ho_lvlup_pc", oPC);
|
||||
}
|
Reference in New Issue
Block a user