ListStatics in makeblacksmithitems.src
Posted: Sun Jun 04, 2006 9:55 pm
in distro96 :blacksmithy:makeblacksmititems.src we can see
And just one small tip to be considered:
another line should be added for static in-map forges/anvil handling:
Same thing with resmelting items. Tongs could be used for that instead of doubleclicking forge which is impossible to dblclick if is static.
I hope you understand my english;]
Code: Select all
foreach item in ListItemsNearLocation(who.x, who.y, who.z, 3)
if((item.objtype == 0x0faf) || (item.objtype == 0x0fb0))
anvil_near := 1;
break;
endif
endforeach
another line should be added for static in-map forges/anvil handling:
Code: Select all
foreach item in ListStaticsNearLocation(who.x, who.y, who.z, 1)
if((item.objtype == 0x0faf) || (item.objtype == 0x0fb0))
anvil_near := 1;
break;
endif
endforeach
I hope you understand my english;]