ID:174977
![]() Jun 26 2003, 3:56 pm
|
|
i got 2 things to ask (1) i want to make a code that makes it when i log in a get like a trail after me and say there is me and when i walk 3 others of me would walk behind but i want them to be faded like the first 1 behind me is a littel the second more and the 3ed 1 lots but i dont know how to do it and (2) how to i make a inventory code so there is a tab saying inventory and when u click on it inside it shows the icons of what u have picked up and same with a magic tab can anyone help
|
Copyright © 2025 BYOND Software.
All rights reserved.
I can help with the inventory, but not the magic or that fadey thingy
Get and Drop verb
-----------------
obj
verb
get()
set category = "Inventory"
set src in oview(1)
src.loc = usr
src << "[usr] got a [src]"
drop()
set category = "Inventory"
set src in oview(1)
src.loc = usr.loc
src << "[usr] dropped a [src]"
ok that will let you pick up and drop 'objects'
Inventory
---------
Stat()
stat("Inventory")
stat(contents)
Items
------
obj
sword
icon = 'objs.dmi'
icon_state = "sword"
just in case ;-)
and that will let you pick up and drop items and see them in an inventory.