mob/Billy
Click()switch(alert("Would you like to be able to become a pizza?")in list("Yes","No"))
I want to be able to make it where if you press yes it adds the verb that changes you to a pizza. If you can help finish this please respond.
~PyRoMaNiAc~
ID:179662
![]() Nov 23 2001, 3:41 pm
|
|
![]() Nov 23 2001, 3:46 pm
|
|
Well you're on the right track so I'll help ya' a bit.
|
I am trying to make it add a verb to the player verb list, I tried something like this..
mob Billy icon='billy.dmi' Click() switch(alert("Do you want to be a pizza?",,"Yes","No")) if("Yes")//Since the alert is switched you can use an if statement mob/verb/turn_into_pizza name = "[usr]" desc = "Mmmmpizza" icon = 'pizza.dmi' if("No") usr<<"Then why did you click me?!" But it does not do anything but make me a pizza. PyRoMaNiAc |