Skip to content

Instantly share code, notes, and snippets.

View yunruse's full-sized avatar
don't forget to drink some water!

Mia yun Ruse yunruse

don't forget to drink some water!
View GitHub Profile
@yunruse
yunruse / AutoLootBase.ws
Last active June 21, 2016 09:11
Better AutoLoot
// AutoLoot main file
function AL_CanLegallyTake( container : W3Container ) : bool
{
if( container.disableStealing || container.HasQuestItem() ||
(W3Herb)container || (W3ActorRemains)container )
return true;
else
return false;
}