|
You last visited: Today at 18:09
Advertisement
UPDATE TITLE W/O TELEPORT HELP
Discussion on UPDATE TITLE W/O TELEPORT HELP within the SRO Coding Corner forum part of the Silkroad Online category.
09/22/2018, 18:34
|
#1
|
elite*gold: 70
Join Date: Apr 2017
Posts: 1,023
Received Thanks: 504
|
UPDATE TITLE W/O TELEPORT HELP
hello guys
is there a way to change title like the zerk quest after you finish the quest
it give you the title without any teleport
tried to parse the packets nothing on the end so can any one help me?
as i think maybe it
0x3515 > AGENT_QUEST_REWAD_SELECT
|
|
|
09/28/2018, 14:37
|
#2
|
elite*gold: 1117
Join Date: Dec 2013
Posts: 858
Received Thanks: 806
|
basically, you will need to send title update packet to client
with playeruniqueID and send it to all players around him in the same region
as example
Packet pack = new Packet(0x30DF);
pack.WriteUInt32(session.Character.UniqueID);
pack.WriteUInt8(TitleID);
SessionExt.BroadCastToSameRegion(session, pack);
|
|
|
09/28/2018, 15:41
|
#3
|
elite*gold: 70
Join Date: Apr 2017
Posts: 1,023
Received Thanks: 504
|
Quote:
Originally Posted by KingDollar
basically, you will need to send title update packet to client
with playeruniqueID and send it to all players around him in the same region
as example
Packet pack = new Packet(0x30DF);
pack.WriteUInt32(session.Character.UniqueID);
pack.WriteUInt8(TitleID);
SessionExt.BroadCastToSameRegion(session, pack);
|
so 0x30DF it the right packet ?
|
|
|
09/29/2018, 01:51
|
#4
|
elite*gold: 1117
Join Date: Dec 2013
Posts: 858
Received Thanks: 806
|
ye it is title update packet
|
|
|
09/29/2018, 08:50
|
#5
|
elite*gold: 70
Join Date: Apr 2017
Posts: 1,023
Received Thanks: 504
|
Quote:
Originally Posted by KingDollar
ye it is title update packet
|
after char teleport title return to the original
|
|
|
09/29/2018, 15:26
|
#6
|
elite*gold: 1117
Join Date: Dec 2013
Posts: 858
Received Thanks: 806
|
Quote:
Originally Posted by Zoro.Sro
after char teleport title return to the original
|
you should update HwanLevel column in _Char table also lol
|
|
|
09/30/2018, 03:44
|
#7
|
elite*gold: 0
Join Date: Oct 2012
Posts: 145
Received Thanks: 31
|
Quote:
Originally Posted by GhosTly93
public void sendtitleupdate(int titleID)
{
Packet packet = new Packet(0x30DF);
packet.WriteUInt32(0x0E4649);
packet.WriteUInt8(titleID);
m_LocalSecurity.Send(packet);
Send(false);
}
but does not working (0x0E4649) my char uniqueID, already writing for test.
can you share the your full packet code?
|
you much send it to player around your char too, look in your code it just send to only your char.
|
|
|
09/30/2018, 16:07
|
#8
|
elite*gold: 70
Join Date: Apr 2017
Posts: 1,023
Received Thanks: 504
|
Quote:
Originally Posted by GhosTly93
public void sendtitleupdate(int titleID)
{
Packet packet = new Packet(0x30DF);
packet.WriteUInt32(0x0E4649);
packet.WriteUInt8(titleID);
m_LocalSecurity.Send(packet);
Send(false);
}
but does not working (0x0E4649) my char uniqueID, already writing for test.
can you share the your full packet code?
|
you must store the UniqueID
to send it and you must send it for all players on the same region
|
|
|
09/30/2018, 22:03
|
#9
|
elite*gold: 100
Join Date: Sep 2017
Posts: 1,108
Received Thanks: 903
|
Quote:
Originally Posted by KingDollar
basically, you will need to send title update packet to client
with playeruniqueID and send it to all players around him in the same region
as example
Packet pack = new Packet(0x30DF);
pack.WriteUInt32(session.Character.UniqueID);
pack.WriteUInt8(TitleID);
SessionExt.BroadCastToSameRegion(session, pack);
|
Come on dude, why did you share it...
|
|
|
09/30/2018, 22:43
|
#10
|
elite*gold: 70
Join Date: Apr 2017
Posts: 1,023
Received Thanks: 504
|
Quote:
Originally Posted by #HB
Come on dude, why did you share it... 
|
hey dont cry maybe it will help someone
|
|
|
10/01/2018, 20:22
|
#11
|
elite*gold: 0
Join Date: Aug 2007
Posts: 438
Received Thanks: 181
|
Quote:
Originally Posted by #HB
Come on dude, why did you share it... 
|
your part of the problem around this community, you beg for help on these forums but soon as someone shares a hint or anything for something you now know or paid for you get annoyed they shared it.. keep your useless comments to yourself and contribute to the threads instead.
actually, you even asked for help with this sort of thing in your previous thread yet when Zoro.Sro asks for help and gets a proper response you get mad lol..
@  keep it up, we need more people like you in this scene
|
|
|
10/01/2018, 22:31
|
#12
|
elite*gold: 350
Join Date: Aug 2015
Posts: 1,999
Received Thanks: 1,188
|
why is this guy complaining because someone shared a packet?
it's funny because anyone with a packet sniffer would easily manage to get the opcode & structure of this simple packet
|
|
|
10/02/2018, 06:31
|
#13
|
elite*gold: 100
Join Date: Sep 2017
Posts: 1,108
Received Thanks: 903
|
Quote:
Originally Posted by silkroadbotter
actually, you even asked for help with this sort of thing in your previous thread yet when Zoro.Sro asks for help and gets a proper response you get mad lol..
|
I don't ask for help at sniffing packets, lol?
|
|
|
10/08/2018, 22:27
|
#14
|
elite*gold: 0
Join Date: Mar 2016
Posts: 46
Received Thanks: 6
|
@  @
I can't question the players around my char and send them the title update packet. How can i do it?
Some S->C packets
• 0xB021 (Region Reader)
• 0x3015 (Single Spawn)
I did a few attempts but could not succeed. How did you guys do it?
|
|
|
10/09/2018, 19:12
|
#15
|
elite*gold: 70
Join Date: Apr 2017
Posts: 1,023
Received Thanks: 504
|
Quote:
Originally Posted by GhosTly93
@  @
I can't question the players around my char and send them the title update packet. How can i do it?
Some S->C packets
• 0xB021 (Region Reader)
• 0x3015 (Single Spawn)
I did a few attempts but could not succeed. How did you guys do it?
|
dude you must send the packet for all players on the same region
Packet pack = new Packet(0x30DF); // update title packet
pack.WriteUInt32(session.Character.UniqueID); // Char UniqueID
pack.WriteUInt8(TitleID); // title numb
SessionExt.BroadCastToSameRegion(session, pack); // here method thats send the packet for every player on the same region
its simple for each player send the title update packet
|
|
|
 |
|
Similar Threads
|
[Selling] PGI Title Crate Code ( PGI TITLE SET SKIN )
07/25/2018 - PlayerUnknown's Battlegrounds Trading - 0 Replies
Hallo,
ich verkaufe einen Key, der in PUBG im Shop aktiviert werden kann um eine PGI Title Crate freizuschalten. Diese Crate beinhaltet das gesamte Title Set.
/1 Ich akzeptiere nur Paypal F&F und werde auch nicht first gehen, es sei denn ihr habt 350+/0/0 positive TBMs.
Es wird nur über Epvp getraded, kein Skype, Discord usw. Zudem muss zuvor ein Trade eröffnet werden. Lest euch bitte vorher die Traderegeln von Epvp durch. Mit Abgabe eines Gebotes, stimmt ihr meinem /1 zu.
Mfg
|
[WTS] Account including all 4 campaigns + Wisdom Title [3] + Treasure title [near 3]
09/06/2009 - Guild Wars Trading - 6 Replies
:
Hi, I'm sellin an Account including all 3 campaigns & EOTN.
It has no characters on it except an PvP Elementalist.
There are some green items and materials on storage, and 11 golden rin relicts
It's not plaync-bounded!!
I'm open for offers. (ectos, zkeys, rare pets or rare items only)
Contact:
..: 195759396
|
[tut] speed teleport (not map teleport)
08/11/2009 - 12Sky2 - 2 Replies
you need cheat eng for this find the movement speed address
current: C61778
2. change to 99999
3. enable your run skill
your done you will go so fast you will teleport make sure you don't click in anything bad shit will happen
thank me :mofo: :mofo: :mofo:
|
How edit topic title? New title.
09/01/2007 - Conquer Online 2 - 2 Replies
Since forum turned vbulletin, i cant edit topic title
|
All times are GMT +1. The time now is 18:10.
|
|