hello pm!
yes, you are right, \r is case-sensitive. the meaning of the ? operator is pretty simple. it's like an if-condition but much smaller and you can use it for values only.. an example:
Code:
new gaben[64]
gaben = (is_user_alive(alfred)) ? "oh, it's true, devouur!" : "NOES, damn"
this would set gaben to "oh, it's true, devouur!" if user alfred is alive. otherwise it'll be set to "NOES, damn"
you could use this, too, but nobody really likes such code parts:
Code:
new gaben[64]
if (is_user_alive(alfred))
gaben = "oh, it's true, devouur!"
else
gaben = "NOES, damn"
I hope I could clear that up for you.
-- Ga.. Basic-Master