ID:268456
 
Can somebody give me a code for combining objects/items?
example: bullets+gun= user has more ammo
Mecha Destroyer JD wrote:
Can somebody give me a code for combining objects/items?
example: bullets+gun= user has more ammo

What you mean like this kinda?

obj/gun
verb/combine()
for(var/obj/bullet/B in usr.contents)
ammo+=5
del(B)


??
Tell me if there are any problems.
In response to Green Lime
I know one off the bat! You're not setting where the verb will be visible, therefore it's invisible.
In response to JohnReaper
JohnReaper wrote:
I know one off the bat! You're not setting where the verb will be visible, therefore it's invisible.

... :*( JohnReaper your mean.
In response to Green Lime
Glad to be of meanence? =)
In response to JohnReaper
Nope. The default setting for objs is "set src in usr." Thanks for playing.