Interesting Theory for Razer unique crystal color menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    Netzgeist's Avatar Contributor
    Reputation
    144
    Join Date
    Jan 2008
    Posts
    353
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i see. serial stickers are quite cheaper than branding plates^^.
    regards,
    NG

    Interesting Theory for Razer unique crystal color
  2. #17
    _Mike's Avatar Contributor
    Reputation
    310
    Join Date
    Apr 2008
    Posts
    531
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's not the same serial as on the actual sticker on the box (or it might be encoded some way), but it's the same concept.

    Edit:
    Disregard above text, I was looking at the wrong log. It IS the same serial as on the box and written under the mouse.
    Last edited by _Mike; 01-20-2012 at 01:56 PM.

  3. #18
    pansonic's Avatar Active Member
    Reputation
    77
    Join Date
    Dec 2011
    Posts
    7
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    GUID is a a unique identifier for every device installed on your computer and they do look at this GUID to see if its match and has not been used yet.

    The CM_Get_Device_ID_Ex function retrieves the device instance ID for a specified device instance.
    The CM_Get_DevNode_Status_Ex function obtains the status of a device instance from its device node.
    The CM_Get_DevNode_Registry_Property_Ex function retrieves a specified device property from the registry.


    void EnumDeviceProperties(DEVNODE dn)
    {
    int BufferSize = MAX_PATH + MAX_DEVICE_ID_LEN;
    TCHAR Buffer[MAX_PATH + MAX_DEVICE_ID_LEN];
    CString Temp;

    DeviceProperties Properties[26]=
    {
    ID_DEVICEID, _T("Device ID: "), _T(""),
    ID_STATUS, _T("Status: "), _T(""),
    ID_PROBLEM, _T("Problem: "), _T(""),
    ID_SERVICE, _T("Service: "), _T(""),
    ...
    };

    if (CM_Get_Device_ID_Ex(dn, Buffer, BufferSize, 0, m_hMachine)
    == CR_SUCCESS)
    {
    Temp=Buffer;
    }
    else
    {
    Temp=_T("Fail to retrieve Device ID");
    }

    ULONG Status, Problem;

    if (CM_Get_DevNode_Status_Ex(&Status, &Problem, dn, 0, m_hMachine)
    == CR_SUCCESS)
    {
    Temp.Format(_T("0xx"), Status);
    Temp.Format(_T("0xx"), Problem);
    }
    else
    {
    Temp=_T("Fail to retrieve Device Status/Problem");
    }


    Temp=GetProperty(dn, CM_DRP_SERVICE);

    Temp=GetProperty(dn, CM_DRP_CAPABILITIES);

    ...
    }


    CString GetProperty(DEVNODE dn, ULONG Property)
    {
    CString Temp;

    TCHAR Buffer[REGSTR_VAL_MAX_HCID_LEN]=_T("");
    ULONG Type;
    ULONG Size = sizeof(Buffer);

    if (CM_Get_DevNode_Registry_Property_Ex(dn, Property,
    &Type,
    Buffer,
    &Size,
    0, m_hMachine) == CR_SUCCESS)
    {
    if (Type == REG_DWORD ||
    Type == REG_MULTI_SZ ||
    Type == REG_SZ )
    {
    if (Type == REG_DWORD)
    {
    DWORD Data = *((DWORD*)Buffer);
    wsprintf(Buffer, _T("0xx"), *((DWORD*) Buffer) );
    }
    else if (Type == REG_MULTI_SZ)
    {
    LPTSTR p = Buffer;
    while (_T('\0') != *p)
    {
    p += lstrlen(p);
    if (_T('\0') != *p)
    *p++ = _T(',');
    }
    }
    }
    }

    Temp=Buffer;
    return Temp;
    }

    Interesting Theory for Razer unique crystal color-test1-jpg

    Im working on it at the moment to let peoples insert their own guid and enumerate Razor Hardwares.
    Last edited by pansonic; 01-20-2012 at 06:40 PM.

  4. #19
    shadowfox47's Avatar Banned
    Reputation
    38
    Join Date
    Jan 2007
    Posts
    339
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so any news on this ?

  5. #20
    871's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, looks like acquiring color crystal impossible without actual device...

  6. #21
    hugehair's Avatar Active Member
    Reputation
    22
    Join Date
    Dec 2006
    Posts
    243
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any developments on this? I don't mean to revive a dead post, but i really want this to work.

  7. #22
    Jiffk's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You would have to fake a unique serial number. Synapse 2.0 uploads to razer server for verification then displays the code for you to use. The code is unique to each device and based on the serial number as code is always the same.

    So you would need to fool you pc into thinking it had a razer swtor device connected, then generate a false serial number to send to the synapse server that could be validated...

    Sounds like a helva lot of work

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Selling] Razer promotional crystal code is for sale
    By RichardCypher in forum Star Wars: The Old Republic Buy Sell Trade
    Replies: 3
    Last Post: 02-15-2013, 10:57 AM
  2. 2 Banned accounts to use for compensation/unique scams
    By Y060N in forum World of Warcraft General
    Replies: 4
    Last Post: 12-29-2007, 03:04 PM
  3. An interesting use for a program. An enhancement req.
    By dokhidamo in forum WoW ME Questions and Requests
    Replies: 4
    Last Post: 12-22-2007, 08:13 PM
  4. For all you other colored names
    By vextra in forum Community Chat
    Replies: 16
    Last Post: 05-27-2007, 11:31 AM
  5. Get tier 2 for a nexus crystal
    By karach in forum World of Warcraft Exploits
    Replies: 1
    Last Post: 07-28-2006, 11:45 AM
All times are GMT -5. The time now is 12:30 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search