random pastebins
#1

You know on pastebin has a box on the right hand side that shows you the newest pastebins online? I saw this one and wondered what it does/what its for if anyone knows.

Код:
 public void Update()
    {
        if(Swimming.InWater)
        {
            currentMovement = Swimming;

            if(Swimming.AtSurface)
            {
                bool jumping = InputButton.Button(ButtonNames.Jump);
                if(jumping)
                {
                    SetCurrentMovementToDefault(new DefaultMovement.InitializeDefaultMovement(Swimming.activePlatform, Swimming.lastPlatform));
                }
            }
        }
        else
        {
            //How do we know we came from water? :(
            //currentMovement = Default; // HORE SKJALG DET HЖR GJOR TE AT ALT Ж GJOR VART NULLA UT AV KUKEN HER LOL
        }

        // Grappling HookButton
        if (InputButton.ButtonDown(ButtonNames.Use))
        {
            if (GrapplingHookRope.Enabled)
            {
                GrapplingHookRope.Cancel();
                SetCurrentMovement(Default);
            }
            else
            {
                GameObject attachmentPoint = GetAttachmentPoint();
                if(attachmentPoint != null)
                {
                     GrapplingHookRope.Launch(transform, attachmentPoint.transform);
                }
            }

            if (currentMovement.GetType() == typeof(GrapplingHook))
            {
                SetCurrentMovement(Default);
            }
        }

        // Jump Button
        if(InputButton.Button(ButtonNames.Jump))
        {
            if(GrapplingHookRope.Enabled)
            {
                GrapplingHookRope.Cancel();
                SetCurrentMovement(Default);
            }

            if(currentMovement.GetType() == typeof(GrapplingHook))
            {
                SetCurrentMovement(Default);
            }
        }

        currentMovement.Movement();

        debug = currentMovement.GetType().Name;
    }
Reply
#2

HORE SKJALG DET HЖR GJOR TE AT ALT Ж GJOR VART NULLA UT AV KUKEN HER LOL

Anyhow, I think it's got something to do with movement?
Reply
#3

Quote:
Originally Posted by Hiddos
Посмотреть сообщение
HORE SKJALG DET HЖR GJOR TE AT ALT Ж GJOR VART NULLA UT AV KUKEN HER LOL
That is Norwegian dialect.
Reply
#4

Yes, everything in pastebin is SA-MP related. (sarcasm)

It seems to be a part of code of some other game.
Reply
#5

I think it's some kind of grapple hook that you can activate while swimming.
Reply
#6

Quote:
Originally Posted by Hiddos
Посмотреть сообщение
HORE SKJALG DET HЖR GJOR TE AT ALT Ж GJOR VART NULLA UT AV KUKEN HER LOL

Anyhow, I think it's got something to do with movement?
its norwegian

norwegian:
Код:
ORE SKJALG DET HЖR GJOR TE AT ALT Ж GJOR VART NULLA UT AV KUKEN HER LOL
english:
Код:
ORE Skjalg THE ARMY MAKES TEA AT ALL Y DO BLACK ZERO OUT OF HERE dick LOL
better translate:
Код:
ORE Skjalg THERE HAS BEEN AT ALL EG DO BLACK ZERO OUT OF HERE dick LOL
lol he is mad xD

and its other game...
i think its gta vicecity or IV
because it look our pawno
and it has debug
Reply
#7

My best guess would be a test script of Just Caus 2 multiplayer, merely because of the grappling hook and my lack of fantasy.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)