PenUltima Online Forum Index Official Core: 096.7
Official Core: 097 2008-02-26
Donate towards the POL web hosting bill!
 POL Home   FAQ   Search    Memberlist   Usergroups    Register    Profile   Log in to check your private messages   Log in
item.graphic

 
Post new topic   Reply to topic    PenUltima Online Forum Index -> Development Discussion 097
Display posts from previous:   

Author Message
ncrsn



Joined: 10 Feb 2006
Posts: 172

PostPosted: Wed Apr 02, 2008 8:26 am    Post subject: item.graphic Reply with quote

Yesterday I ran across a very new problem. I tried to change a graphic of an equipped item.

The graphic updated correctly to the character who wore the item.
Characters nearby didn't see the difference - to them, item's graphic stayed the same.
Same happened if the modified item was onto NPC.

Packets sent by POL were absolutely the same. For some reason onlooking clients just did not update the view accordingly.

It wasn't until the character went away and returned back that the item's graphic updated.

I tried this with different items.

I tried sending the 0x2E packet again after .graphic change.

Finally I tried to solve the error by sending delete object packet (http://packets.polserver.com/index.php?op=showpacket&packet=0x1D) just before updating the graphic member, and that seems to solve it.

I tested this using client 5.0.6c, and finally the discussion may begin... Is this something that the newer clients introducted, or just a mistake of mine? If latter, what is the error I made? If this "feature" do exist, is it possible to alter core to do the job, so scripters would not have to create ChangeGraphic()-functions to work around this problem?

Using the 5.0.6c client, the error occurs on both POL097RC5 and POL097 2008-02-26.

--

Just in case someone needs it, this is one way to solve this problem: use the function below instead of item.graphic (when changing graphic of an item equipped to character [using 5.0.6c client {if what said above if valid}])

Code:

function ChangeGraphic( item, graphic )
   var mobile := item.container;
   
   if (mobile)
      var packet := CreatePacket(0x1D, 5);
      packet.SetInt32(1, item.serial);
      
      foreach player in ListMobilesNearLocationEx(mobile.x, mobile.y, mobile.z, 18, LISTEX_FLAG_NORMAL + LISTEX_FLAG_HIDDEN + LISTEX_FLAG_GHOST + LISTEX_FLAG_CONCEALED, mobile.realm)
         if (!player.isa(POLCLASS_NPC))
            if (mobile != player)
               packet.SendPacket(player);
            endif
         endif
      endforeach
   endif
   
   item.graphic := graphic;
   
endfunction

Author Message
OldnGrey



Joined: 04 Feb 2006
Posts: 520

PostPosted: Thu Apr 03, 2008 1:49 am    Post subject: Reply with quote

I wonder if the 'equip from another realm' bug that was introduced in rc5 (?) wasn't properly fixed in POL097 2008-02-26. (ie it only fixed it for self, but not others)

I am still on rc5 and have similar problems when on Ilshenar but was hoping POL097 2008-02-26 was going to fix it.

Equipping an item doesn't change the realm of the item and you have to go offscreen and back to see it updated.

I am doing all my tests on v5.0.9.1 client but we have 4.0.3.d as well.

Knowing your findings I will try and see if I can narrow it down. Thanks for the useful function though. It might just help if there's no other recourse.

Author Message
ncrsn



Joined: 10 Feb 2006
Posts: 172

PostPosted: Thu Apr 03, 2008 9:46 am    Post subject: Reply with quote

Never used multiple realms so cannot tell for sure.

To be more exact, here's a step by step tutorial to test if the mentioned bug exists (note, mobile could be PC, and if it is, his/her client will update the graphic accordingly.):

1. Create a NPC.
2. Add equipment on NPC, for instance a robe.
3. Open NPC's paperdoll.
4. Using .setprop graphic X, or any other way, change the robe's graphic to something else. The internal script should be just "item.graphic := X". New value does not matter as far as it is different than current, it doesn't even have to valid graphic.
5. Report to this thread: did the change of a graphic update to your client correctly?
6. If yes, what core and client did you use for testing? Are you using packethooks that may affect the result?

--

I wrote a packethook that fixes the problem without the need of altering the scripts. But before I publish it, I'd like to know if there are anyone who might need it - so far this is occured using client versions 5.0.1j and 5.0.6c with POL 097 RC5 and POL 097 2008-02-26.

Author Message
ncrsn



Joined: 10 Feb 2006
Posts: 172

PostPosted: Sun Apr 06, 2008 3:32 pm    Post subject: Reply with quote

Found this: http://forums.polserver.com/ftopic1085.php.

And responded: http://forums.polserver.com/sutra10656.php#10656.

Author Message
OldnGrey



Joined: 04 Feb 2006
Posts: 520

PostPosted: Mon Apr 07, 2008 3:14 am    Post subject: Reply with quote

Very handy

Post new topic   Reply to topic    PenUltima Online Forum Index -> Development Discussion 097 All times are GMT - 4 Hours
Page 1 of 1

 




Powered by phpBB © 2001, 2005 phpBB Group :: Theme & Graphics by GHS & Scott E. Royalty