24 lines
524 B
Plaintext
24 lines
524 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: ra_greet_new_pc
|
||
|
//:: Copyright (c) 2022 Project RATDOG
|
||
|
//::
|
||
|
//::
|
||
|
//:://////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: PC has had the "newbie" convo & free money
|
||
|
//::
|
||
|
//:://////////////////////////////////////////////
|
||
|
//::
|
||
|
//:: Created By: Jaysyn
|
||
|
//:: Created On: 20220617
|
||
|
//::
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
SetLocalInt(oPC,"Spoke2Greeter",GetLocalInt(oPC,"Spoke2Greeter") + 1);
|
||
|
}
|