[SOLVED] ITEMLINK Help on 2015-09-16aRagexe.exe client

Virtue

New member
Messages
259
Points
0
eRnT3kI.png


ITEMLINK doesn't seem to work on this client? Or, does it? I've tried <URL></URL> and it works, but can't seem to get ITEMLINK to work.

RuNKiNb.png


SOLVED:

Functor said:
For 2015-09-16aRagexe you have to use:

<ITEM> and </ITEM>


instead of:

Code:
<ITEMLINK> and </ITEMLINK>



 
Last edited by a moderator:
try this:
 

mes("1 x "+Itemlink(Shield_) );
mes("20 x "+Itemlink(Poring_Card) );



Add this function:

Code:
//=========================================
//= Itemlink(<itemid>)
//= return item string with itemlink added
//=========================================
function    script    Itemlink    {
    .@id = getarg(0);
    return "<ITEM>"+getitemname(.@id)+"<INFO>"+.@id+"</INFO></ITEM>";
}
 
It's basically the same.

both that and

mes "<ITEMLINK>Valkyrie Shield<INFO>2115</INFO></ITEMLINK> .";
mes("<ITEMLINK>Poring Card<INFO>4001</INFO></ITEMLINK>");


won't work as intended. That's why I am thinking that it's disabled in my client version just want to confirm it though

 
For 2015-09-16aRagexe you have to use:

<ITEM> and </ITEM>


instead of:

Code:
<ITEMLINK> and </ITEMLINK>
 
Back
Top