Guest User

Untitled

a guest
Jul 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /*
  2. Filename: nr_noobcheck
  3. System: Starting Conditional
  4. Author: Matthew Meier (Gmork)
  5. Date Created: Apr. 3, 20012
  6. Description: This script is used to check if a PC has done the starting quest befor
  7. */
  8.  
  9.  
  10. #include "aps_include"
  11.  
  12. int StartingConditional()
  13. {
  14. object oPC = GetPCSpeaker();
  15.  
  16. if (GetPersistentInt(oPC, "iStartQuest ") != 0) return FALSE;
  17.  
  18. return TRUE;
  19. }
Add Comment
Please, Sign In to add comment