L2Tower Discord Let's keep the community alive with discord. Discussions about plugins and scripts L2Tower Discord

Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
damage counter
Author Message
mark1975 Offline
Ratman Chieftain
*

Posts: 24
Joined: Apr 2012
Reputation: 0
Version: 1.4.2.133
Post: #1
damage counter

hello

some one have damage counter plugin for free
not with money plz

ty
07-29-2014 00:59 AM
Find all posts by this user Quote this message in a reply
mark1975 Offline
Ratman Chieftain
*

Posts: 24
Joined: Apr 2012
Reputation: 0
Version: 1.4.2.133
Post: #2
RE: damage counter

i need to damage counter plx

ty
09-01-2014 14:46 PM
Find all posts by this user Quote this message in a reply
eustach3 Offline
VIP Member
***

Posts: 324
Joined: Sep 2011
Reputation: 133
Version: 1.4.3.143
Post: #3
RE: damage counter

pvpsuite has shared once a plugin like that, and its free try to search through his posts
09-01-2014 17:36 PM
Find all posts by this user Quote this message in a reply
capucine Offline
Expired VIP Member
**

Posts: 1,083
Joined: Jan 2013
Reputation: 208
Version: 1.4.2.142
Post: #4
RE: damage counter

(09-01-2014 17:36 PM)eustach3 Wrote:  pvpsuite has shared once a plugin like that, and its free try to search through his posts

His plugin is in OUTDATED status... Is it still working with Ertheia update?

I downloaded it, will test next time i reboot !
09-01-2014 17:45 PM
Find all posts by this user Quote this message in a reply
mark1975 Offline
Ratman Chieftain
*

Posts: 24
Joined: Apr 2012
Reputation: 0
Version: 1.4.2.133
Post: #5
RE: damage counter

damage counter from pvp suite show me only damage give by myself not damage take from enemy

some help ??
09-01-2014 17:58 PM
Find all posts by this user Quote this message in a reply
capucine Offline
Expired VIP Member
**

Posts: 1,083
Joined: Jan 2013
Reputation: 208
Version: 1.4.2.142
Post: #6
RE: damage counter

ok, i tried it this morning and as soon as i log in, i get an error so the plugin aint working for me.
09-02-2014 14:54 PM
Find all posts by this user Quote this message in a reply
ExoDo Offline
Restrainer of Glory
*

Posts: 171
Joined: Feb 2014
Reputation: 12
Version: 1.4.2.142
Post: #7
RE: damage counter

what about make yourself? .-.
09-02-2014 23:09 PM
Find all posts by this user Quote this message in a reply
mark1975 Offline
Ratman Chieftain
*

Posts: 24
Joined: Apr 2012
Reputation: 0
Version: 1.4.2.133
Post: #8
RE: damage counter

(09-02-2014 23:09 PM)ExoDo Wrote:  what about make yourself? .-.

becouse i dont know how to do

and ty for help

make y if y know how to do
09-14-2014 16:44 PM
Find all posts by this user Quote this message in a reply
rhadamants Offline
Expired VIP Member
**

Posts: 27
Joined: Jun 2012
Reputation: 6
Version: 1.4.2.136
Post: #9
RE: damage counter

search in PVPSuite:
    LUA Programming
function OnChatSystemMessage(id, msg)
	if (id == 2261) then
		local dmsg = msg;
		dmsg = dmsg:match(" %d+ ");
		if (dmsg ~= nil) then
			dmsg = dmsg:gsub(" ","");
		end;
		if (tonumber(dmsg) ~= nil) then
			damageDone = damageDone + dmsg;
			if (ShowOnEachDoneHit) then
				DoDialog("Damage Counter");
			end;
		end;
	elseif (id == 2262) then
			local dmsg = msg;
			dmsg = dmsg:match(" %d+ ");
			if (dmsg ~= nil) then
				dmsg = dmsg:gsub(" ","");
			end;
			if (tonumber(dmsg) ~= nil) then
				damageReceived = damageReceived + dmsg;
				if (ShowOnEachReceivedHit) then
					DoDialog("Damage Counter");
				end;
			end;


and replace for:

    LUA Programming
function OnChatSystemMessage(id, msg)
	if (id == 2261) then
		local dmsg = msg;
		dmsg = string.gsub(dmsg, ",", "");
		if (dmsg ~= nil) then
			dmsg = string.match(dmsg, "%d+");
		end;
		if (tonumber(dmsg) ~= nil) then
			damageDone = damageDone + dmsg;
			if (ShowOnEachDoneHit) then
				DoDialog("Damage Counter");
			end;
		end;
	elseif (id == 2262) then
			local dmsg = msg;
			dmsg = string.gsub(dmsg, ",", "");
			if (dmsg ~= nil) then
				dmsg = string.match(dmsg, "%d+");
			end;
			if (tonumber(dmsg) ~= nil) then
				damageReceived = damageReceived + dmsg;
				if (ShowOnEachReceivedHit) then
					DoDialog("Damage Counter");
				end;
			end;

(This post was last modified: 07-29-2015 02:05 AM by rhadamants.)
07-29-2015 02:03 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Reflect Damage Resistance Skill ID's eveon710 4 5,153 06-16-2014 21:18 PM
Last Post: buzika
  Lineage 2 Damage housemix 2 4,258 08-09-2013 22:58 PM
Last Post: cryyss1991
  Online counter. lqlqdodo 3 3,458 03-07-2012 15:25 PM
Last Post: Fox



User(s) browsing this thread: 1 Guest(s)