GET PARTY MEMBERS ID'S FROM DATABASE ?????

05/20/2017 04:32 -Prestige..#1
THE TITLE EXPLAINS ITSELF..
IS THERE IS A WAY TO GET PARTY MEMBERS ID'S OR CHAR NAMES FROM A DATABASE TABLE OR SMTH?

I'VE SEARCHED THE TABLES BUT FOUND NOTHING,..
ANY POSSIBLE WAY ?
05/20/2017 08:34 blapanda#2
You mean the Party creation ID and the people joining that party, which resets after a reboot/restart of the server modules?

It is like the character buffs and their "gets removed after teleport" behavior, they are getting cached and are not stored anywhere inside the database. You have to create a bypass, like some people found a way of coding an inefficient script making buffs persistent, even after a teleportation or relogging process.

You might either find SP related nodes or dig around the server modules and cavecode some necessary stuff.
05/20/2017 15:17 B1Q#3
Quote:
Originally Posted by blapanda View Post
You mean the Party creation ID and the people joining that party, which resets after a reboot/restart of the server modules?

It is like the character buffs and their "gets removed after teleport" behavior, they are getting cached and are not stored anywhere inside the database. You have to create a bypass, like some people found a way of coding an inefficient script making buffs persistent, even after a teleportation or relogging process.

You might either find SP related nodes or dig around the server modules and cavecode some necessary stuff.
cavecode? lol

or just use a filter and capture party creation packet / players joining / players leaving and store them in the database.
05/20/2017 16:17 blapanda#4
Quote:
Originally Posted by B1QB0SS :3 View Post
cavecode? lol

or just use a filter and capture party creation packet / players joining / players leaving and store them in the database.
lol

Not everyone uses a filter, for a certain reason.
05/20/2017 16:57 B1Q#5
Quote:
Originally Posted by blapanda View Post
lol

Not everyone uses a filter, for a certain reason.
and here i thought filters were necessary :(
05/21/2017 05:11 -Prestige..#6
Quote:
Originally Posted by blapanda View Post
You mean the Party creation ID and the people joining that party, which resets after a reboot/restart of the server modules?

It is like the character buffs and their "gets removed after teleport" behavior, they are getting cached and are not stored anywhere inside the database. You have to create a bypass, like some people found a way of coding an inefficient script making buffs persistent, even after a teleportation or relogging process.

You might either find SP related nodes or dig around the server modules and cavecode some necessary stuff.
Well skills are stored in _timedjob & can be easily made persistent ..
but pt creation id and players are not stored

Quote:
Originally Posted by B1QB0SS :3 View Post
cavecode? lol

or just use a filter and capture party creation packet / players joining / players leaving and store them in the database.
Thats the obvious way !! .. but i can't code(c++ or whatever) :/
Thanks anyway :)

PS: i don't think there is a filter around here which captures pt packet ..
maybe superman but i don't remember, ill check
05/21/2017 05:36 blapanda#7
Quote:
Originally Posted by -Prestige.. View Post
Well skills are stored in _timedjob & can be easily made persistent ..
"Stored" is not as the same as you might think that _Timedjob inherits. Think about scroll buffs, premium, and now about skills.

And yes, get your stuff done with ASM, since you cannot code in C#, particularly.
05/21/2017 14:27 B1Q#8
Quote:
Originally Posted by blapanda View Post
"Stored" is not as the same as you might think that _Timedjob inherits. Think about scroll buffs, premium, and now about skills.

And yes, get your stuff done with ASM, since you cannot code in C#, particularly.
dude he just said i cant code C++ or C# AND YOU TELLING HIM TO DO IT WITH ASM KK


you don't have to find a filter that captures pt packet. use any released src (nexus for example) and do it yourself. capturing & analyzing packets shouldn't be hard and you just need basic C# knowledge
05/21/2017 15:04 blapanda#9
Quote:
Originally Posted by B1QB0SS :3 View Post
dude he just said i cant code C++ or C# AND YOU TELLING HIM TO DO IT WITH ASM KK


you don't have to find a filter that captures pt packet. use any released src (nexus for example) and do it yourself. capturing & analyzing packets shouldn't be hard and you just need basic C# knowledge
ASM is easier than learning code entirely on a different language without knowing headers, namespaces, classes, build and or debug states, processor builds, .NET instances and Co.
Besides of that, on epvp is a great ASM tutorial, which will grant you quite good amount of knowledge getting done with your stuff.
You are like one of many "leech and use already released source codes, be lazy and don't dare to learn anything" users around these forums. Sad, but obvious.
05/21/2017 17:10 B1Q#10
Quote:
Originally Posted by blapanda View Post
ASM is easier than learning code entirely on a different language without knowing headers, namespaces, classes, build and or debug states, processor builds, .NET instances and Co.
Besides of that, on epvp is a great ASM tutorial, which will grant you quite good amount of knowledge getting done with your stuff.
You are like one of many "leech and use already released source codes, be lazy and don't dare to learn anything" users around these forums. Sad, but obvious.
"ASM IS GOOD AND EASY" that might be the case for you but not for him.
the things you mentioned would not take 1 hour for an autistic person to learn how they work and get a basic idea of the "different" language which i assume is C# in this case.
+ learning other language will benefit him more than learning ASM which is not used that much. if he wanted to learn a programming language / how filters are made he would've said so in his previous post but he said
Quote:
i can't code(c++ or whatever) :/
asking him to get his shit done with ASM is kinda stupid he would've learnt the commonly used programming language in sro (C#) which will help him so fucking much to achieve whatever he wants be it filters or other personal programs

he's obviously not looking for a programming tutorial that's why i suggested using a released src to get the job done.

learning ASM will be beneficial for someone who really needs it but in this case he can do it in a few lines using a C# filter without learning a new language just knowing how to read packets & use variables is enough until he decides to learn the whole thing, he might not be interested in programming at all that's why he didn't learn it even tho he knows it is needed.


05/21/2017 18:18 blapanda#11
Quote:
Originally Posted by B1QB0SS :3 View Post
-snip-
Whatever, Troll.
05/23/2017 03:12 Spidy.#12
I believe you solved it already, if not please inform me and I'll reopen it back.

#Closed