Tips & Tricks - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Nederlands/Dutch (
https://sampforum.blast.hk/forumdisplay.php?fid=31)
+----- Forum: Scripting Showroom en Discussie (
https://sampforum.blast.hk/forumdisplay.php?fid=76)
+----- Thread: Tips & Tricks (
/showthread.php?tid=262193)
Tips & Tricks -
mamorunl - 16.06.2011
In dit topic kun je alle 'minitutorials' neerzetten. Bijvoorbeeld:
Short-hand notatie if-else
In plaats van:
pawn Code:
if(thisIsSparta <= 9000)
{
echo "Under 9000 (or the same, but meh)";
} else {
echo "OVER 9000!!!!!!!";
}
kan je de short-hand notatie gebruiken:
pawn Code:
echo (thisIsSparta <= 9000) ? "Under 9000 (or the same, but meh)" : "OVER 9000!!!!!!!";