mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -04:00
33 lines
735 B
Plaintext
33 lines
735 B
Plaintext
/**
|
|
* Copyright (c) ©2000-2002 Sony Online Entertainment Inc.
|
|
* All Rights Reserved
|
|
*
|
|
* Title: camp_basic.script
|
|
* Description: camp_basic
|
|
* @author $Author:$
|
|
* @version $Revision: #1 $
|
|
*/
|
|
|
|
//------------------------------------------------
|
|
// Inherits
|
|
//------------------------------------------------
|
|
|
|
inherits item.camp.camp_base;
|
|
|
|
//------------------------------------------------
|
|
// Methods
|
|
//------------------------------------------------
|
|
|
|
//------------------------------------------------
|
|
// OnAttach
|
|
//------------------------------------------------
|
|
|
|
trigger OnAttach()
|
|
{
|
|
// Set our skill req.
|
|
setObjVar( self, "campPower", 1 );
|
|
setObjVar( self, "skillReq", 1 );
|
|
|
|
return SCRIPT_CONTINUE;
|
|
}
|