• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[TFS 1.1] Unjustified points window?

wesoly136

Member
Joined
Jul 30, 2009
Messages
562
Reaction score
8
Is that simply disabled in 1.1 or do I have something wrong with it?
11938056_864552540280056_1502474812_n.jpg
 
Bump!

i found this : OTCLIENT <

Code:
UnjustifiedPoints unjustifiedPoints;
+    unjustifiedPoints.killsDay = msg->getU8();
+    unjustifiedPoints.killsDayRemaining = msg->getU8();
+    unjustifiedPoints.killsWeek = msg->getU8();
+    unjustifiedPoints.killsWeekRemaining = msg->getU8();
+    unjustifiedPoints.killsMonth = msg->getU8();
+    unjustifiedPoints.killsMonthRemaining = msg->getU8();
+    unjustifiedPoints.skullTime = msg->getU8();
+
+    g_game.setUnjustifiedPoints(unjustifiedPoints);

--UnjustifiedPoints
This is for the Unjustified Points window in the client that shows your progress and skull. It passes seven uint8_t values as follows:

Code:
progressDay
killsRemainingDay
progressWeek
killsRemainingWeek
progressMonth
killsRemainingMonth
skullDuration

someone can help me to fix it?

--Send Methods

0xB7 = UnjustifiedPoints

all the tibia clients 1056+ have this window.
 
joe already posted some code lines in here, use search.
Here the lines.

Code:
progressDay
killsRemainingDay
progressWeek
killsRemainingWeek
progressMonth
killsRemainingMonth
skullDuration

and he comment this =

--Send Methods

0xB7 = UnjustifiedPoints

wibenz coment a link =

and the link show you this =
Code:
UnjustifiedPoints unjustifiedPoints;
+    unjustifiedPoints.killsDay = msg->getU8();
+    unjustifiedPoints.killsDayRemaining = msg->getU8();
+    unjustifiedPoints.killsWeek = msg->getU8();
+    unjustifiedPoints.killsWeekRemaining = msg->getU8();
+    unjustifiedPoints.killsMonth = msg->getU8();
+    unjustifiedPoints.killsMonthRemaining = msg->getU8();
+    unjustifiedPoints.skullTime = msg->getU8();
+
+    g_game.setUnjustifiedPoints(unjustifiedPoints);

use search function newer than 2010 +
No injustified window working.
checked all the Github forked projects
No injustified window coded.

someone can give a example about this?
 
Here the lines.

Code:
progressDay
killsRemainingDay
progressWeek
killsRemainingWeek
progressMonth
killsRemainingMonth
skullDuration

and he comment this =

--Send Methods

0xB7 = UnjustifiedPoints

wibenz coment a link =

and the link show you this =
Code:
UnjustifiedPoints unjustifiedPoints;
+    unjustifiedPoints.killsDay = msg->getU8();
+    unjustifiedPoints.killsDayRemaining = msg->getU8();
+    unjustifiedPoints.killsWeek = msg->getU8();
+    unjustifiedPoints.killsWeekRemaining = msg->getU8();
+    unjustifiedPoints.killsMonth = msg->getU8();
+    unjustifiedPoints.killsMonthRemaining = msg->getU8();
+    unjustifiedPoints.skullTime = msg->getU8();
+
+    g_game.setUnjustifiedPoints(unjustifiedPoints);

use search function newer than 2010 +
No injustified window working.
checked all the Github forked projects
No injustified window coded.

someone can give a example about this?
Added support to orangeSkull and the current frag system (brunominerv… · mattyx14/otxserver@43fb8ee · GitHub
 
Working at 90% very good

the injustified window show you the amount of frags per day,week,month.
orange skull (revenge) working perfectly.

why 90%?

because the open pvp situations show = 0 all the time.

on rl when you attack someone is 1
if you attack 2 players then 2
etc etc
 
Back
Top