Alangara_PRC8/_module/nss/mn_aidb_initer.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

30 lines
809 B
Plaintext

#include "mn_h_constants"
#include "mn_i_checkrank"
void main()
{
object oPC = GetItemActivator();
object oTarget = GetItemActivatedTarget();
// *** Pass ***
object pass = CreateItemOnObject("mn_i_pcaccess", oTarget, 1);
SetLocalString( pass, "tied_to", GetLocalString( oTarget, "cid" ) );
SetLocalInt( pass, "rank", MN_RANK_PERSONAL );
SetLocalInt( pass, "corrupted", FALSE );
// *** Keys ***
CreateItemOnObject("mn_aidbr_memkey", oTarget, 1);
CreateItemOnObject("mn_aidbr_offkey", oTarget, 1);
CreateItemOnObject("mn_erantonkey", oPC);
// *** Token ***
object token = CreateItemOnObject("mn_aidb_token", oTarget, 1);
SetLocalInt( token, "mn_rank", MN_AIDB_CEYAR );
// *** Guild-rod ***
CreateItemOnObject( "mn_aidb_rod", oTarget, 1 );
// Feedback
}