ID:145175
 
Code:
StrenghSword
icon = 'Kingdom Hearts icons.dmi'
icon_state = "Strengh Sword"
density = 0
Click()
alert("Hi [usr.name], I will send you to any battle area you want to go to. Now choose where you want to fight.")
var/choice = input("Where would you like to go?")in list("Cell Games Arena","Namek")
if(choice == "Cell Games Arena")usr.loc = locate(25,11,2)
else if(choice == "Namek")usr.loc = locate(1,1,2)


Problem description:

can somone fix then and repost it corrctly plese.
Tab your Click()
In response to Vancegetto
that didnt work
In response to Dbgtsuperfreak
Well if you have read the DM GUIDE and DM REFERENCE like everyone has been telling you , you would definatly know what to do.

StrenghSword
icon = 'Kingdom Hearts icons.dmi'
icon_state = "Strengh Sword"
density = 0
Click()
alert("Hi [usr.name], I will send you to any battle area you want to go to. Now choose where you want to fight.")
var/choice = input("Where would you like to go?")in list("Cell Games Arena","Namek")
if(choice == "Cell Games Arena")usr.loc = locate(25,11,2)
else if(choice == "Namek")usr.loc = locate(1,1,2)
obj
StrenghSword
icon = 'Kingdom Hearts icons.dmi'
icon_state = "Strengh Sword"
density = 0
Click()
alert(usr,"Hi [usr.name], I will send you to any battle area you want to go to. Now choose where you want to fight.")
var/choice = input("Where would you like to go?")in list("Cell Games Arena","Namek")
if(choice == "Cell Games Arena")usr.loc = locate(25,11,2)
if(choice == "Namek")
usr.loc = locate(1,1,2)


That should do it
In response to A.T.H.K
that does not work
In response to Dbgtsuperfreak
Yes it does you must of done something wrong somewhere else..
In response to A.T.H.K
Code:
turf
BlackFloor
icon = 'turfs.dmi'
icon_state = "Black floor"
density = 0

Pedestal
icon = 'Kingdom Hearts icons.dmi'
icon_state = "pedestall"
density = 0

HeartWand
icon = 'Kingdom Hearts icons.dmi'
icon_state = "Heart Wand"
density = 0
Click()
alert("test")

CastleSheild
icon = 'Kingdom Hearts icons.dmi'
icon_state = "Castle Shield"
density = 0
Click()
alert("test")

StrenghSword
icon = 'Kingdom Hearts icons.dmi'
icon_state = "Strengh Sword"
density = 0
Click()
alert("Hi [usr.name], I will send you to any battle area you want to go to. Now choose where you want to fight.")
var/choice = input("Where would you like to go?")in list("Cell Games Arena","Namek")
if(choice == "Cell Games Arena")usr.loc = locate(25,11,2)
else if(choice == "Namek")usr.loc = locate(1,1,2)
obj
SavePointLeft
icon='Kingdom Hearts icons.dmi'
icon_state="save point left"
density=0
verb
enterspaxepod1()
set src in oview(0)
set name = "Save"
set category = "Saving"



obj
SavePointRight
icon='Kingdom Hearts icons.dmi'
icon_state="save point right"
density=0
verb
enterspaxepod2()
set src in oview(0)
set name = "Save"
set category = "Saving"


Problem description:

here is the whole thing now please tell me what is worng or fix it.
In response to A.T.H.K
Actually it wouldn't... My posted version should fix it.

You left a HUGE error on the last line
In response to Dbgtsuperfreak
I just told you that
obj
StrenghSword
icon = 'Kingdom Hearts icons.dmi'
icon_state = "Strengh Sword"
density = 0
Click()
alert(usr,"Hi [usr.name], I will send you to any battle area you want to go to. Now choose where you want to fight.")
var/choice = input("Where would you like to go?")in list("Cell Games Arena","Namek")
if(choice == "Cell Games Arena")usr.loc = locate(25,11,2)
if(choice == "Namek")
usr.loc = locate(1,1,2)

should fix it
In response to CYN
ok now it works thanks CYN
In response to Dbgtsuperfreak
No Problem! :D