ID:144861
 
Code:
        Click()
set src in oview(1)
var/chc = input("Which Chioce?","Choose")in list("1","2","3","4")
if("1")
//happens if they choose one
else
usr<<"Sorry but [chc] is not yet finished."//happens if they choose another
..()


Problem description:
I get this message chc :warning: variable defined but not used Does anyone know how to fix and or improve this.
[EDIT:]nevermind-_-I fixed thanks for trying to help though I appriciate it
Hellsing4 wrote:
Code:
>       Click()
> set src in oview(1)
> var/chc = input("Which Chioce?","Choose")in list("1","2","3","4")
> if("Red vs. Blue Space")
> //happens if they choose one
> else
> usr<<"Sorry but [chc] is not yet finished."//happens if they choose another
> ..()
>
>

Problem description:
I get this message chc :warning: variable defined but not used Does anyone know how to fix and or improve this.

More importantly, what exactly are you doing?
if("Red vs. Blue Space")
is a constant, true statement. It will always run.

Hiead