Quote:
|
Originally Posted by KuJi
Hmm, that would work..but what is switch for then?
|
not like switch is a graal-unique thing.. other langs have it, its purpose is to make things like more organized, also you can do something like
NPC Code:
case 1:
case 2:
case 3:
player.chat = "foo";
break;
while the elseif form of that would be much longer