I am wondering if a modification to the findSpinticket could be made, perhaps have used {$define DESTROYSPIN} at the beginning of their script
http://villavu.com/forum/archive/index.php/t-80543.html
Simba Code:
function FindSpinTicket(): Boolean;
var
oneFreeSpin, x, y: Integer;
begin
oneFreeSpin := DTMFromString('mrAAAAHic42BgYMhlYmBIBuJyIC4F4hQgLgPiaiAuAeInQDWvgfg+ED8D4vdQDBK/BcS9BloMHXHWYMzLwwMUYULB/EASH2ZCw4xoGAYA/y4OqA==');
if (FindDTM(oneFreeSpin, x, y, MIX1, MIY1, MIX2, MIY2)) then
begin
Mouse(x, y, 5, 5, mouse_Move);
if (WaitUptext('laim', 300)) then
begin
{$ifdef DESTROYSPIN}
ClickMouse2(mouse_Right);
Wait(RandomRange(100, 200));
ChooseOption('estroy');
Wait(RandomRange(300, 400));
FindNPCChatTextMulti(['All', 'Yes'], ClickLeft);
{$ELSE}
ClickMouse2(mouse_Left);
Wait(RandomRange(100, 200));
{$endif}
Result := True;
end;
FreeDTM(oneFreeSpin);
end;