Show Posts

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.


Topics - bbs

Pages: [1]
1
General Discussion / A wild bird came and pecked at my bugs
« on: July 12, 2018, 05:39:11 AM »
So i was testing some L33tscr1pt5 on my server and a wild "Swollow" popped in.

As he pecked around, he got his wings on a gun and pecked the bugs right out of it

"when you pick up an item the item in your hand gets remounted".

I then said "y u come find my bugs", and he flew away.


Hide your bugs.

2
Modification Help / Semi-realistic projectiles, bullet trails/tracers.
« on: August 08, 2014, 09:39:50 PM »
The gun fires. a first yellow then a fire colored beam then an emitter of smoke following it 
at the speed of the yellow beam fading away and all of this fading away in about 700 milliseconds.

i would like to see how this would look but i don't know what the models of tracers/bullet trails are supposed to look like in a .dts i'm sure i could model if i got an idea.

help please.

3
Modification Help / GuiScrollCtrl & GuiTextList Are Whack, Help.
« on: June 19, 2013, 08:47:05 AM »
So, i used Guiscrollctrl as a parent for guitextlist and i get rows on my list but the rows are limited to 24, is this because of the size of my gui?

Code: [Select]
        };
         new GuiScrollCtrl() {
            profile = "GuiScrollProfile";
            horizSizing = "right";
            vertSizing = "bottom";
            position = "40 83";
            extent = "271 271";
            minExtent = "8 2";
            enabled = "1";
            visible = "1";
            clipToParent = "1";
            willFirstRespond = "0";
            hScrollBar = "alwaysOff";
            vScrollBar = "alwaysOn";
            constantThumbHeight = "0";
            childMargin = "0 0";
            rowHeight = "40";
            columnWidth = "30";

            new GuiTextListCtrl(Crpg_jobselectList) {
               profile = "GuiTextListProfile";
               horizSizing = "right";
               vertSizing = "bottom";
               position = "1 1";
               extent = "259 2";
               minExtent = "8 2";
               enabled = "1";
               visible = "1";
               clipToParent = "1";
               enumerate = "0";
               resizeCell = "1";
               columns = "0";
               fitParentWidth = "1";
               clipColumnText = "1";
            };
         };
%list = Crpg_JobselectList
%string = "a b c d e f g h i j k l m o p q r s t u v w x y z abc asd gre asd weq trg daw"; // y would be the 24th row
%c = getWordCount(%string) + 1;
for(%i=0;%i < %c;%i++)
{
%letter = getWord(%string,%i);
%list.addRow(%i,%letter);
}


in the end i would only get up to y because it's the 24th row, z would not show. and it seems that is the limit for me, and ideas on how to change it

Pages: [1]