Important information: this site is currently scheduled to go offline indefinitely by end of the year.

yongshi online

The Original Forum. Game archives, full of resources. How to open them? Get help here.
Post Reply
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

yongshi online

Post by finale00 »

The contents of this post was deleted because of possible forum rules violation.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: yongshi online

Post by aluigi »

it's only a customized zip file:

Code: Select all

# Yongshi Online (script 0.1.1)
# script for QuickBMS http://quickbms.aluigi.org

get zip_filesize asize
for offset = 0 < zip_filesize
    idstring "hry"
    get sign threebyte
    if sign == 0x030201     # Local file header
        get flag            short
        get method          short
        get modtime         short
        get moddate         short
        get crc             long
        get comp_size       long
        get uncomp_size     long
        get name_len        short
        get extra_len       short
        getdstring name     name_len
        getdstring extra    extra_len
        savepos offset

        if method == 0
            Log name offset uncomp_size
        else
            if method == 8
                ComType deflate
            else
                print "unsupported compression method %method%"
                cleanexit
            endif
            CLog name offset comp_size uncomp_size
        endif
        math offset += comp_size
        goto offset
    else
        cleanexit
    endif
    savepos offset
next
*edit* script updated
Last edited by aluigi on Wed Feb 01, 2012 6:34 pm, edited 1 time in total.
User avatar
CriticalError
double-veteran
double-veteran
Posts: 678
Joined: Sun Jul 05, 2009 2:03 am
Has thanked: 104 times
Been thanked: 41 times

Re: yongshi online

Post by CriticalError »

aluigi wrote:it's only a customized zip file:

Code: Select all

# Yongshi Online
# script for QuickBMS http://quickbms.aluigi.org

get zip_filesize asize
for offset = 0 < zip_filesize
    idstring "hry"
    get sign threebyte
    if sign == 0x030201     # Local file header
        get flag            short
        get method          short
        get modtime         short
        get moddate         short
        get crc             long
        get comp_size       long
        get uncomp_size     long
        get name_len        short
        get extra_len       short
        getdstring name     name_len
        getdstring extra    extra_len
        savepos offset

        if flag != 0
            if method == 0
                Log name offset uncomp_size
            else
                if method == 8
                    ComType deflate
                else
                    print "unsupported compression method %method%"
                    cleanexit
                endif
                CLog name offset comp_size uncomp_size
            endif
            math offset += comp_size
        endif
        goto offset
    else
        cleanexit
    endif
    savepos offset
next
thanks for scripts aluigi but I try unpack some files and with all get errors.
You do not have the required permissions to view the files attached to this post.
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: yongshi online

Post by aluigi »

sorry a lot for the error, I have fixed it immediately so recheck the previous post
User avatar
CriticalError
double-veteran
double-veteran
Posts: 678
Joined: Sun Jul 05, 2009 2:03 am
Has thanked: 104 times
Been thanked: 41 times

Re: yongshi online

Post by CriticalError »

aluigi wrote:sorry a lot for the error, I have fixed it immediately so recheck the previous post
don't worry aluigi, you're welcome bro, thanks for all support you give, I need learn how make my own bms scripts for don't disturb others, cool job again now it worked fine.

Is a Gamebryo File Format, Version 20.3.0.9.

Some models tested.

Image
Image
Image
User avatar
aluigi
VVIP member
VVIP member
Posts: 1916
Joined: Thu Dec 08, 2005 12:26 pm
Location: www.ZENHAX.com
Has thanked: 4 times
Been thanked: 664 times
Contact:

Re: yongshi online

Post by aluigi »

if you learn the bms language and make some script, remember to post it here on xentax.
here we share everything.

and don't worry "to disturb" me, this is my hobby and I plan to have scripts for almost all the games in the world :)
User avatar
CriticalError
double-veteran
double-veteran
Posts: 678
Joined: Sun Jul 05, 2009 2:03 am
Has thanked: 104 times
Been thanked: 41 times

Re: yongshi online

Post by CriticalError »

aluigi wrote:if you learn the bms language and make some script, remember to post it here on xentax.
here we share everything.

and don't worry "to disturb" me, this is my hobby and I plan to have scripts for almost all the games in the world :)
eh yeah don't worry about that, i'm a good person and like help alway when I can, ofc this is all new for me because need learn not only 1 thing, but I try take some lesson soon have a nice day, take care.
finale00
M-M-M-Monster veteran
M-M-M-Monster veteran
Posts: 2382
Joined: Sat Apr 09, 2011 1:22 am
Has thanked: 170 times
Been thanked: 307 times

Re: yongshi online

Post by finale00 »

That's weird.
Is anyone else getting models that look very...2D?

Cause I'm looking at 20.6 engine and the coords are also very...2D
EasterSudharta
ultra-n00b
Posts: 1
Joined: Thu Feb 16, 2012 6:48 am

Re: yongshi online

Post by EasterSudharta »

Hi anyone have alternative file? i mean hosting file. i can't download it, too bad!
Post Reply