Code tagged for anyone else reading:
Simba Code:
if (self.isSlotVaild(slotArr[i])) and (self.isItemInSlot(slotArr[i])) then //line 524
SRL was updated to revision 1050 today (yesterday?), some changes were made to several function parameters that broke a very small number of scripts.
Edit: Just dl'd the script and it seems like the error actually is local, Ashaman has some custom functions in there for TRSTabBackpack. I'm attempting to resolve the issue now...
Edit again: Ah, I see. The function identifiers for
.isSlotValid() were misspelled as
.isSlotVaild() in the include. Revision 1050 corrected this, but the calls are still spelled the same in the script, and thus don't exist.
Change the offending line to this, and you'll be good to go.
Simba Code:
if (self.isSlotValid(slotArr[i])) and (self.isItemInSlot(slotArr[i])) then
@
Ashaman88;