SphereCommunity
Words of power - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Words of power (/Thread-Words-of-power)



Words of power - mistero1989 - 12-20-2015 03:13 PM

I want to put spells with runic symbols , how can i do? thanx Big Grin


RE: Words of power - anora - 12-25-2015 08:27 AM

Code:
///////////////////////////////////////////////////////////////////////
// *Scripter Name : Raskol Serna
// *Shard Name : The Rosario Game
// *Shard Address : www.rosario.gen.tr
// *Personal Address : www.raskolserna.com
// *Messenger and E-Mail : raskolserna@msn.com
// *Sphere Version : Specially 0.56b and maybe other releases
//
// *Bu kodlar TheRaskol tarafından yazılmış veya editlenmiştir.
// *The codes are written or were edited by TheRaskol (Raskol Serna).
///////////////////////////////////////////////////////////////////////

[EVENts e_diemaster]

[FUNCTION diemaster]
if (<isevent.e_diemaster>)
if ((<src.magery> > 98.0) && (<src.meditation> > 98.0) && (<src.anatomy> > 98.0) && (<src.evaluatingintel> > 98.0))
var.font = <src.font>
src.font = 8
src.say @0790,8 <strtoupper <args>>
src.font = <var.font>
return 1
endif
else
say @0790 <args>
endif

[function spell_say]
if !(<isevent.e_diemaster>)
say @0790 <args>
return 1
endif

if ((<src.magery> > 98.0) && (<src.meditation> > 98.0) && (<src.anatomy> > 98.0) && (<src.evaluatingintel> > 98.0))
src.diemaster <args>
return 1
else
say @0790 <args>
endif

[eof]