• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Vocation

DestinationSer

@echo off
Joined
Mar 7, 2009
Messages
2,806
Solutions
1
Reaction score
676
How do i make it so soul regenerates with 50 every second? heres the script:
Code:
<vocation id="9" name="Assassin" description="a Assassin" needpremium="0" gaincap="25" gainhp="25" gainmana="0" gainhpticks="3" gainhpamount="5" gainmanaticks="6" gainmanaamount="5" manamultiplier="3.0" attackspeed="500" soulmax="200" gainsoulticks="120" fromvoc="9">
  <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0" /> 
  <skill fist="0" club="1.1" sword="1.1" axe="1.1" distance="1.4" shielding="1.1" fishing="1.1" experience="1.0" /> 
  </vocation>
 
You can change how much soul you gain but only how many seconds you recive 1 soul!

or else its possible make with creaturescript, it should look like this:

Code:
function onThink(cid, interval)
	if isPlayer then
        addEvent (doPlayerAddSoul(cid,1,50)
	end
	return true
end
 
Last edited:
Back
Top