ID:163601
 
im trying to give a worrior a shield and a sword but evry time i do this it says error duplicate defenition and previos defenicion how do i fix it pls and ty


var/obj/sword/B = new/obj/sword
var/obj/shield/B = new/obj/shield
B.loc = usr
Lusifer wrote:
im trying to give a worrior a shield and a sword but evry time i do this it says error duplicate defenition and previos defenicion how do i fix it pls and ty

var/obj/sword/B = new/obj/sword
var/obj/shield/B = new/obj/shield
B.loc = usr

Duplicate definition means you defined something twice, like for instance used a var with the same name. Take a close look at where you might have done anything like that.

Lummox JR