1. I have corrected the e-mail settings so that outgoing e-mails from these forums should be sent now. If you tried to Register or Reset your Password, please try again!
    Dismiss Notice

Spell Information

Discussion in 'Census: General Discussion' started by Catharz, Mar 18, 2012.

  1. Catharz

    Catharz Guest

  2. DanKinney

    DanKinney Guest

    I did the following query to find the item you are talking about...

    census.daybreakgames.com/jml/get/eq2/item/?displayname_lower=synergism+v+(master)

    For names with a space, you can use either a "+" or a "%20".  

    The actual id is 2341565302, so the direct link would be...

    census.daybreakgames.com/jml/get/eq2/item/2341565302

    -dan

     
  3. Dethdlr

    Dethdlr Guest

    If the id in an item link is a negative number, it needs to be converted into an unsigned integer to show it's real item id.  We do that at EQ2U like this in PHP:

    if($id < 0){    $id = sprintf("%u",$id);}

    That allows people to pass in either the normal item id or the negative version and still get the correct item.

    Here is that item at EQ2U: u.eq2wire.com/item/index/-1953401994

    Hope that helps.

     
  4. Catharz

    Catharz Guest

    Good stuff, thanks guys. :)

     

Share This Page