Thanks, very useful. :)
Thanks, very useful. :)
hex codes out wherehause
PHP Code:declare @items varbinary(1920),
@accountid varchar(10);
set @accountid='xavi';
use MuOnline;
set @items = (SELECT Items FROM warehouse WHERE AccountId = @accountid);
print @items;
hex codes out inventory
PHP Code:declare @items varbinary(1728),
@character varchar(10);
set @character='Xavi';
use MuOnline;
set @items = (SELECT Inventory FROM Character WHERE Name = @character);
print @items;
Last edited by xavi321; 08-01-10 at 04:53 AM.
asdasdasd
any query to select the Serial of the items?
regards!
I want to understand exactly what it means:
where (charindex (0xbf, inventory) %10=8) or (charindex (0xff, inventory) %10=8) or (charindex (0x7f, inventory) %10=8) or (charindex (0x3f, inventory) %10=8)...
I want to learn how it works and make my own query.
Thank's in advance.
With this code, can we count how many items is exc full option per account?
Code:select * from warehouse where (charindex (0xbf, items) %10=8) or (charindex (0xff, items) %10=8) or (charindex (0x7f, items) %10=8) or (charindex (0x3f, items) %10=8) select * from character where (charindex (0xbf, inventory) %10=8) or (charindex (0xff, inventory) %10=8) or (charindex (0x7f, inventory) %10=8) or (charindex (0x3f, inventory) %10=8)