View Single Post
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 04-10-2015 , 06:01   Re: Orpheu Signatures Collection
Reply With Quote #23

^
Few things need to be fixed:

CWeaponBox::Kill is exported on windows and it misses latest linux symbol
Code:
{
    "name"        : "Kill",
    "class"       : "CWeaponBox",
    "library"     : "mod",
    "identifiers" :
    [
        {
            "os"    : "windows",
            "mod"   : "cstrike",
            "value" : "?Kill@CWeaponBox@@QAEXXZ"
        },
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "Kill__10CWeaponBox"
        },
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "_ZN10CWeaponBox4KillEv"
        }
    ]
}
CWeaponBox::PackAmmo, Mixed spaces/tabs, unreliable windows signature, missing latest linux symbol
Code:
{
    "name"        : "PackAmmo",
    "class"       : "CWeaponBox",
    "library"     : "mod",
    "arguments" : 
    [
        {
            "type" : "int"
        },
        {
            "type" : "int"
        }
    ],
    "identifiers" :
    [
        {
            "os"    : "windows",
            "mod"   : "cstrike",
            "value" : [0x51,0x53,0x8B,"*","*","*",0x55,0x56,0x85]
        },
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "PackAmmo__10CWeaponBoxii"
        },
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "_ZN10CWeaponBox8PackAmmoEii"
        }
    ]
}
CWeaponBox::PackWeapon, Mixed spaces/tabs, unreliable windows signature, missing latest linux symbol
Code:
{
    "name"        : "PackWeapon",
    "class"       : "CWeaponBox",
    "library"     : "mod",
    "arguments" : 
    [
        {
            "type" : "CBasePlayerItem *"
        }
    ],
    "identifiers" :
    [
        {
            "os"    : "windows",
            "mod"   : "cstrike",
            "value" : [0x83,"*","*",0x53,0x55,0x56,0x57,0x8B,"*","*","*",0x8B,"*",0x8B,"*",0x89]
        }
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "PackWeapon__10CWeaponBoxP15CBasePlayerItem"
        },
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "_ZN10CWeaponBox10PackWeaponEP15CBasePlayerItem"
        }
    ]
}
CREATE_NAMED_ENTITY, Mixed spaces/tabs, missing old linux symbol
Code:
{
    "name"      : "CREATE_NAMED_ENTITY",
    "library"   : "mod",
    "arguments" :
    [
        {
            "type" : "int",
            "info" : "iszClass"
        }
    ],
    "return" :
    {
        "type" : "edict_s *",
        "info" : "pent"
    },
    "identifiers":
    [
        {
            "os"    : "windows",
            "mod"   : "cstrike",
            "value" : [0x56,0x57,0x8B,"*","*","*",0x57,0xFF,"*","*","*","*","*",0x8B,"*",0x83,"*","*",0x85,"*",0x74,"*",0xA1]
        },
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "CREATE_NAMED_ENTITY__FUi"
        },
        {
            "os"    : "linux",
            "mod"   : "cstrike",
            "value" : "_Z19CREATE_NAMED_ENTITYj"
        }
    ]
}
__________________

Last edited by Arkshine; 04-10-2015 at 06:01.
Arkshine is offline