[Solved]Filling inventory for testing purposes?
Posted: Sat Jan 26, 2013 5:21 am
I made a little script to fill inventory of a character for testing purposes. But for some reason I can't get my simple script working.
I simply use a wall button to activate a script entity. I get error: "Item expected, got ???"
Code: Select all
function itemPut1()
for itemSlot = 11,31 do
party:getChampion(1):insertItem(itemSlot,"baked_maggot"..itemSlot)
end
end