17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName at_givesword
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 6/21/2003 12:38:38 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker the items
|
||
|
CreateItemOnObject("rts_it_mag50", GetPCSpeaker(), 1);
|
||
|
int nQuests=GetLocalInt(GetPCSpeaker(),"nQuests");
|
||
|
nQuests++;
|
||
|
SetLocalInt(GetPCSpeaker(),"nQuests",nQuests);
|
||
|
|
||
|
}
|