mob/C21
name = "Cliquer pour repondre"
icon='Text.dmi'
icon_state="-1"
Click()
var/qwerty = input("Ętes-vous certain?")in list("Oui","Non")
if(qwerty == "Oui")
usr<<"Tu as raison!"
usr.score += 1
usr.NQ()
else
return
mob/I21
name = "Cliquer pour repondre"
icon='Text.dmi'
icon_state="-1"
Click()
var/qwerty=input("Ętes-vous certain?")in list("Oui","Non")
if(qwerty=="Oui")
usr<<"Tu as tort."
usr.NQ()
else
return
Problem description: I have tried everything i know to get these to work for a game i'm making for school. It compiles properly but it won't do anything in the game. Project due tomorrow and byond blocked on school network.
I use switch when I'm deciding between one or the other. Hope this helps.