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
Packet List (06-29-2006)

 
Post new topic   This topic is locked: you cannot edit posts or make replies.    PenUltima Online Forum Index -> Packet World
Display posts from previous:   

Author Message
MuadDib
POL Developer


Joined: 13 Feb 2006
Posts: 830
Location: Indiana, USA

PostPosted: Sat May 20, 2006 5:06 pm    Post subject: Packet List (06-29-2006) Reply with quote

** EDITED **

From here on, can go to http://packets.polserver.com to get this list in it's most updated version.

Stuff still missing of course, but more complete than most others out there that I have been able to find.

Hope this helps peeps with 096+ packethooks.

June 20, 2006 - Updated a couple packet listings. No "new" packets added.

June 23, 2006 - Udated info, fixed some typos.

June 29, 2006 - Updated info, etc.


Last edited by MuadDib on Wed Nov 01, 2006 12:57 am; edited 8 times in total

Author Message
tekproxy
Distro Developer


Joined: 06 Apr 2006
Posts: 350
Location: Nederland, Texas

PostPosted: Sun May 21, 2006 12:58 am    Post subject: Reply with quote

This is very nice. How can I submit packets I have discovered. For example, I've played around with party sub commands 5 and 7, which I have not seen documented anywhere. 5, from what I can tell, is identical to 4, which is almost identical to 3. 7 works like an "invite" packet, but I'm not sure exactly what it does or if it's even used on OSI anymore.

Author Message
MuadDib
POL Developer


Joined: 13 Feb 2006
Posts: 830
Location: Indiana, USA

PostPosted: Sun May 21, 2006 1:00 am    Post subject: Reply with quote

Can just give em to me, or right here, and i can update it as I get time.

When I get the funds for a new host, i'll have it back online though thankfully. Which includes a link to make the file you download here from my db.

Author Message
Tomi



Joined: 21 Feb 2006
Posts: 30

PostPosted: Thu Jun 08, 2006 7:30 pm    Post subject: Reply with quote

MuadDib look at this thread, there might be some information about packets that you are missing in your guide.

http://reverse.torfo.org/forum/viewtopic.php?t=21

Author Message
Aeros



Joined: 24 Apr 2006
Posts: 69

PostPosted: Fri Jun 09, 2006 8:55 am    Post subject: Reply with quote

Uploaded for easy viewing:

http://www.chyrellos.co.za/PacketGuide_LostSouls.html

Author Message
Turley



Joined: 05 Feb 2006
Posts: 19

PostPosted: Sat Jun 17, 2006 9:12 am    Post subject: Reply with quote

I tested a bit more with the Buff/Debuff packet and here are my final results:

BYTE[1] Cmd
BYTE[2] Length
BYTE[4] Serial of player
BYTE[2] Icon Number to show
BYTE[2] 0x1 = Show, 0x0 = Remove. On remove byte, packet ends here.
BYTE[2] Icon Number to show.
BYTE[2] 0x1 = Show
BYTE[4] 00000000
BYTE[2] Time in seconds (simple countdown without automatic remove)
BYTE[4] 00000000
BYTE[4] Cliloc ID of title of icon.
BYTE[4] Cliloc ID of description for example 1049644 (no custom description packet ends here)
BYTE[6] 000000000000
BYTE[len(str)*2] Unicode String ("\t"+str) (To seperate the entrys add "\t")

And here a simple testfunction:
Code:

function buff(who,iconnumber)
var packet:=CreatePacket(0xDF,MSGLEN_VARIABLE);
packet.setint32(3,who.serial);
packet.setint16(7,iconnumber);
packet.setint16(9,0x1);//0x1==show/0x0=remove->end packet
//packet.sendpacket(who);
//return;
packet.setint16(15,iconnumber);
packet.setint16(17,0x1);//0x1==show/0x0=remove
packet.setint16(23,0);//time in sec (simple clientside countdown without removing it automatic)
packet.setint32(28,1075655);//cliloc 1
packet.setint32(32,1075818);//cliloc 2
var str:="\t+20\t+10\t+10\t+10\t+10"; //+20physik resist,+10fire/cold/poison/energy
packet.SetUnicodeString(43,CAscZ(str),1);
packet.sendpacket(who);
endfunction


List of iconnumbers (source of names: http://update.uo.com/design_523.html)
Code:
//1001: Dismount
//1002: Disarm
//1005: Nightsight
//1006: Death Strike
//1007: Evil Omen
//1008: ? GumpID 0x7556
//1009: ? GumpID 0x753A
//1010: Divine Fury
//1011: Enemy Of One
//1012: Stealth
//1013: Active Meditation
//1014: Blood Oath caster
//1015: Blood Oath curse
//1016: Corpse Skin
//1017: Mindrot
//1018: Pain Spike
//1019: Strangle
//1020: Gift of Renewal
//1021: Attune Weapon
//1022: Thunderstorm
//1023: Essence of Wind
//1024: Ethereal Voyage
//1025: Gift Of Life
//1026: Arcane Empowerment
//1027: Mortal Strike
//1028: Reactive Armor
//1029: Protection
//1030: Arch Protection
//1031: Magic Reflection
//1032: Incognito
//1033: Disguised
//1034: Animal Form
//1035: Polymorph
//1036: Invisibility
//1037: Paralyze
//1038: Poison
//1039: Bleed
//1040: Clumsy
//1041: Feeble Mind
//1042: Weaken
//1043: Curse
//1044: Mass Curse
//1045: Agility
//1046: Cunning
//1047: Strength
//1048: Bless


[edit: Fixed the second Cliloc description]

Author Message
MuadDib
POL Developer


Joined: 13 Feb 2006
Posts: 830
Location: Indiana, USA

PostPosted: Tue Jun 20, 2006 6:24 pm    Post subject: Reply with quote

Updated a few things. nothing special, but updates none-the-less.

Author Message
phwoar



Joined: 28 Jun 2006
Posts: 5
Location: Perth, AussieLand

PostPosted: Wed Jun 28, 2006 10:01 am    Post subject: Reply with quote

pm me if you need some hosting... free of course...

Author Message
MuadDib
POL Developer


Joined: 13 Feb 2006
Posts: 830
Location: Indiana, USA

PostPosted: Tue Oct 31, 2006 2:22 am    Post subject: Reply with quote

Just FYI for everyone who frequents this post or file, from here on out it will be hosted at http://packets.polserver.com for viewing and download. Give me some time to get an actual database driven one back online though. For now, the index page is the downloaded form until the new db driven site is up and in place (will NOT be running on PHP-Nuke, so will be rewritting everything from scratch, so will take me a few since so busy irl).

Author Message
MuadDib
POL Developer


Joined: 13 Feb 2006
Posts: 830
Location: Indiana, USA

PostPosted: Tue Oct 31, 2006 2:24 am    Post subject: Reply with quote

Oh, and just wanted to say Thanks for all the offers I have had over the past year for hosting. I was wanting something to be more guaranteed of perm, and with our new hosting package and so forth, this is exactly what I was looking for. If you want to show appreciation for the work myself or the other pol devs do outside the core, or for that itself, you can always donate to reimburse austin for the first year's hosting, or donate toward future bills of hosting (we pay yearly up front for the next year).

Author Message
MuadDib
POL Developer


Joined: 13 Feb 2006
Posts: 830
Location: Indiana, USA

PostPosted: Wed Nov 01, 2006 12:56 am    Post subject: Reply with quote

The actual site is fully back up and running now for the Packet List. You can go there from http://packets.polserver.com and even download live versions there once again. Will lock this topic now, so people can go there.

Post new topic   This topic is locked: you cannot edit posts or make replies.    PenUltima Online Forum Index -> Packet World All times are GMT - 4 Hours
Page 1 of 1

 




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