• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Doubt with item and chance to hit.

Piifafa

Member
Joined
Apr 16, 2023
Messages
67
Reaction score
16
Hello everyone different from others ot my server uses a file extension called items.srv I wonder if I can increase the chance of hitting a bolt by doing this? I write this now because I am at work.

Code:
[CODE=lua]TypeID        = 3450

Name        = "a power bolt"
Flags       = {Cumulative,Take,Ammo}
Attributes  = {Weight=90,AmmoType=BOLT,Attack=40,MissileEffect=14,Fragility=100}

changed here

Code:
[CODE=lua]TypeID        = 3450
Name        = "a power bolt"
Flags       = {Cumulative,Take,Ammo}
Attributes  = {Weight=90,AmmoType=BOLT,Attack=40,hitChance=100,MissileEffect=14,Fragility=100}
 
Last edited:
Back
Top