View Single Post
  #3  
Old 05-20-2019, 09:55 PM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Things will differ between lua and perl, (for those who need the info), like this little clip example from the Priest of Discord, for the wiz/druid spells.

LUA
Code:
elseif((e.other:Class() == "Wizard" or e.other:Class() == "Druid")
Perl
Code:
elsif(($class eq "Wizard" || $class eq "Druid")
__________________
Hanging out at Antonica.World
Reply With Quote