Yeah.. I remember this
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: habi on Oct 22, 2022, 05:12 PMHow is everybody doing..
Quote from: Kenneth Law on Aug 30, 2022, 07:10 AMWhat do you mean by files and story? Does story mean store and files mean the unp.7z which I packed up for maps?
Quote from: Kenneth Law on Aug 26, 2022, 03:49 AMSeby, do you know what flags value refers to?
function test() {
arr <- array(100);
for (local i = 0; i < arr.len(); i++) {
arr[i] = GUILabel( VectorScreen( 300, 300 ), Colour( 255,255,255 ), "FontSize changing + ESC to MENU speed!" );
arr[i].FontFlags = GUI_FFLAG_OUTLINE;
arr[i].FontSize = 11;
Console.Print( "created label no " + i );
}
}
test();