-
Posts
1751 -
Joined
-
Last visited
KrispyK's Achievements

Immigrant (1/7)
22
Reputation
Single Status Update
-
when ya tryin to learn arma code but all the guides online ae to old and the links dont work any more
-
Just download a mission and start reading through the code to work out what does what and then make your own mission from scratch and learn as you go. The BIS Wiki will help you a lot and KillzoneKid has a lot of good examples of how to do things on his website. http://killzonekid.com/
-
Thanks, it's pretty werid they use their own code tbh
-
Ill teach you some new arma code like this one meet me at teh chic filla at parking lot 18.
PS i dont like chicken
String a =
"Hello\u200e"
;
String b =
"Hello\u200f"
;
System.out.println(
'\''
+ a +
"' and '"
+ b +
"' are length "
+ a.length() +
" and "
+ b.length()
+
", equals() is "
+ a.equals(b));
-