15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
|
//Simple BaseAttackBonus Script
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By:Lilacor
|
||
|
//:: Created On:9/29/2004
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oCreature = OBJECT_SELF;
|
||
|
int nBaseAttackBonus = 3;
|
||
|
|
||
|
SetBaseAttackBonus(nBaseAttackBonus, oCreature);
|
||
|
}
|