SA-MP Forums Archive
random pastebins - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Other (https://sampforum.blast.hk/forumdisplay.php?fid=7)
+--- Forum: Everything and Nothing (https://sampforum.blast.hk/forumdisplay.php?fid=23)
+--- Thread: random pastebins (/showthread.php?tid=277642)



random pastebins - sherlock - 18.08.2011

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;
    }



Re: random pastebins - Hiddos - 18.08.2011

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?


Re: random pastebins - [03]Garsino - 18.08.2011

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.


Re: random pastebins - Karlip - 18.08.2011

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

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


Re: random pastebins - Danny - 18.08.2011

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


Re: random pastebins - Kaperstone - 18.08.2011

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


Re: random pastebins - playbox12 - 18.08.2011

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