Conversation Between xWhyNotx and ~Anbuja
1 to 2 of 2
  1. xWhyNotx
    December 27th, 2012 10:45 AM
    xWhyNotx
    Something like this the first time you uses it:
    -------------------------------------------------------------------------------------------------------------------------------------
    #dynamic 0x800000

    #org @start
    lock
    faceplayer
    goto @transparent
    msgbox @1 0x6
    release
    end

    #org @1
    = This text box is transparent!

    #org @transparent
    writebytetooffset 0x3F 0x4000048
    writebytetooffset 0x1F 0x4000049
    writebytetooffset 0x41 0x4000050
    writebytetooffset 0x3F 0x4000051
    writebytetooffset 0xF 0x4000052
    writebytetooffset 0xA 0x4000053
    writebytetooffset 0xFF 0x202F0AA
    writebytetooffset 0xFF 0x202F0AB
    writebytetooffset 0x0 0x202F0B8
    writebytetooffset 0x0 0x202F0B9
    writebytetooffset 0x0 0x202F0AC
    writebytetooffset 0x0 0x202F0AD
    writebytetooffset 0x0 0x202F0BE
    writebytetooffset 0x0 0x202F0BF
    writebytetooffset 0x0 0x202F0C0
    writebytetooffset 0x0 0x202F0C1
    writebytetooffset 0x0 0x202F0C2
    writebytetooffset 0x0 0x202F0C3
    writebytetooffset 0x0 0x202F0C4
    writebytetooffset 0x0 0x202F0C5
    writebytetooffset 0x0 0x202F0C6
    writebytetooffset 0x0 0x202F0C7
    writebytetooffset 0x0 0x202F0C8
    writebytetooffset 0x0 0x202F0C9
    return
    end

    -------------------------------------------------------------------------------------------------------------------------------------
    The writebytetoffet commands make it transparent.
    After you compile the script copy the offset it gives you for @transparent and save it notepad.
    In my case it was 800EBC
    So every script where we want the textbox to be transparent you's have to call it using that offset

    Example
    -------------------------------------------------------------------------------------------------------------------------------------
    #dynamic 0x800000

    #org @start
    lock
    faceplayer
    call 0x800EBC
    msgbox @1 0x6
    release
    end

    #org @1
    = I just called this transparent text \nbox and it \lworks!
    -------------------------------------------------------------------------------------------------------------------------------------

    I'll warn you though that there are some glitches that come with it such as a weird menu that is half transparent and other things. The bugs are nothing major that effect gameplay though.
    You're welcome c;
  2. ~Anbuja
    December 27th, 2012 10:22 AM
    ~Anbuja
    Uhm excuse me for pumping in here, but i hope u dont mind me asking, but i just gotta ask.

    How did u make the textbox in your ruby hack transparent o.O