Is there a way to create a screen where 2 players can talk and trade items, but where both have to click a button to agree to the trade? And, what would add to my Drop() verb to make the item go to the ground your on instead of dissapearing? Here's my drop code.
obj/weapon/verb
Unequip()
set src in usr
if(usr.RightHand==0)
usr << "It's not equipped..."
else
usr.RightHand = 0
usr.Strength -= Power
Get()
set src in oview(1)
usr.contents += src
usr << "You pick up [src]."
usr.Money += src.value
Drop()
set src in oview(1)
usr.contents -= src
usr << "You toss aside your [src]"
Copyright © 2025 BYOND Software.
All rights reserved.
I believe that will work.
And for the trading, try creating an HUD, there should be some demos on it.