Wobbly Mob

by Hiro the Dragon King
[Share] [Zip]
To download this demo for your Linux/Mac installation, enter this on your command line:

DreamDownload byond://HirotheDragonKing.WobblyMob##version=0

Emulator users, in the BYOND pager go to File | Open Location and enter this URL:

byond://HirotheDragonKing.WobblyMob##version=0

52 downloads
Latest Version
Date added: Oct 30 2009
Last updated: Feb 5 2011
0 fans
A demo demonstrating a bug where the mob wobbles as it moves. [More]
Mash the arrow keys for a few minutes. Eventually, you will see the bug.

turf
    icon = 'blue.dmi'

obj
    screen
        icon = 'red.dmi'

        New(client/C,X,Y)
            screen_loc = "[X],[Y]"
            C.screen += src
            ..()

mob
    icon = 'green.dmi'

    Login()
        new/obj/screen(client,5,5)
        new/obj/screen(client,5,6)
        new/obj/screen(client,5,7)
        new/obj/screen(client,6,5)
        new/obj/screen(client,6,7)
        new/obj/screen(client,7,5)
        new/obj/screen(client,7,6)
        new/obj/screen(client,7,7)
        ..()

Advertisement