Jump to content

Slikpik

Banned
  • Posts

    138
  • Joined

  • Last visited

Posts posted by Slikpik

  1. The NPC's are linked to their chests easy. I'll show you how to link them

     

    1st) Place your chest somewhere the player cant get.

    2) In your NPC, select the vendor chest

    http://i47.tinypic.com/23sjjhy.png

    3) In your NPC, select what he can sell

    http://i49.tinypic.com/9ut64m.png

    4) assuming you know how to dialogue, in the option where he will show his sell menu, type in the Result (End) ShowBarterMenu

    http://i50.tinypic.com/kbbxj5.png

  2. Nah.... This is what I done.

     

    I set up two quests.

    BSPSetUp

    BSPMain

     

    I set up a script called BSPSetUp and it's code was

     

    scn BSPSetUpScript
    
    Short Stage
    
    Begin GameMode
    	if (Stage != 2)
    		Set Stage to 2
    		SetQuestDelay BSPMain 0.1
    	endif
    end
    

     

    I made that script type a quest and put it in the BSPSetUpQuest

    Then started a new script which was

     

    scn BSPMainScript
    
    ref Person
    
    Begin GameMode
    If (BSPSetUp.Stage == 2)
    Set Person to Player.GetCrosshairRef
    	if (Person.GetIsRace Caucasian) || (Person.GetIsRace CaucasianOld) || (Person.GetIsRace CaucasianOldAged) && (Person.IsKiller Player)
    		BDSHitmanBoxREF.AddItem Caps001 25
    	endif
    endif
    end
    

     

    Set that script to quest script and stuck it in that quest.

×
×
  • Create New...