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

Post Reply 
 
Thread Rating:
  • 75 Vote(s) - 3.73 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Portuguese Area
Author Message
lksloko Offline
Ratman Chieftain
*

Posts: 21
Joined: Jan 2013
Reputation: 0
Version: 1.4.2.132
Post: #211
RE: Portuguese Area

(02-05-2013 07:17 AM)Marv Wrote:  Tem que fechar o l2

fiz certo? eu salvo o plugin na pasta plugin abro o l2 e faco uq pra liga o plugin? nao apareceu nenhuma mensagem aki dizendo q o plugin esta on ou off... nao manjo nada de script e plugin sou totalmente perdido!

TA AKI O PLUGIN DO CARA PRA CANCELA OS DEBUFFS USANDO UM HEALER


HealerStatus = false;

function OnCreate()
this:RegisterCommand("HealerFix", CommandChatType.CHAT_ALLY, CommandAccessLevel.ACCESS_ME);
end;

function OnCommand_HealerFix(vCommandChatType, vNick, vCommandParam)
if (HealerStatus == false) then
HealerStatus = true;
ShowToClient("Heal Fix","Fixing Is Activated.");
else
HealerStatus = false;
ShowToClient("Heal Fix","Fixing Is Deactivated.");
end;
end;

function OnLTick1s()
local myself = GetMe();
local MyTarget = GetTarget();
if (HealerStatus == true) then
if (myself ~= nil) and (myself:IsAlikeDeath() == false) and (MyTarget ~= nil) and ((MyTarget:IsMonster()) or not ((MyTarget:IsMyPartyMember()) or (MyTarget:IsMe()))) then
ClearTargets();
CancelTarget(false);
CancelTarget(false);
CancelTarget(false);
end;
end;
end;

Use command "HealerFix" to activate/deactivate it.

NAO CONSEGUI ATIVAR aki... alguem pod me ajuda ?!
(This post was last modified: 02-05-2013 08:07 AM by lksloko.)
02-05-2013 07:59 AM
Find all posts by this user Quote this message in a reply
Marv Offline
VIP Member
***

Posts: 276
Joined: Apr 2012
Reputation: 15
Version: 1.4.1.110
Post: #212
RE: Portuguese Area

Fecha o jogo, joga o plugin na pasta plugin e inicia um novo jogo.

Ativa automaticamente, não precisa fazer mais nada.

Eu, eu ando de passo leve pra não acordar o dia
Sou da noite a companheira mais fiel qu'ela queria!
Big Grin
02-05-2013 08:56 AM
Find all posts by this user Quote this message in a reply
NaoJogoMais Offline
I'm Watching You!
**

Posts: 924
Joined: Oct 2012
Reputation: 194
Version: 1.4.2.132
Post: #213
RE: Portuguese Area

(02-05-2013 07:59 AM)lksloko Wrote:  
(02-05-2013 07:17 AM)Marv Wrote:  Tem que fechar o l2

fiz certo? eu salvo o plugin na pasta plugin abro o l2 e faco uq pra liga o plugin? nao apareceu nenhuma mensagem aki dizendo q o plugin esta on ou off... nao manjo nada de script e plugin sou totalmente perdido!

TA AKI O PLUGIN DO CARA PRA CANCELA OS DEBUFFS USANDO UM HEALER


HealerStatus = false;

function OnCreate()
this:RegisterCommand("HealerFix", CommandChatType.CHAT_ALLY, CommandAccessLevel.ACCESS_ME);
end;

function OnCommand_HealerFix(vCommandChatType, vNick, vCommandParam)
if (HealerStatus == false) then
HealerStatus = true;
ShowToClient("Heal Fix","Fixing Is Activated.");
else
HealerStatus = false;
ShowToClient("Heal Fix","Fixing Is Deactivated.");
end;
end;

function OnLTick1s()
local myself = GetMe();
local MyTarget = GetTarget();
if (HealerStatus == true) then
if (myself ~= nil) and (myself:IsAlikeDeath() == false) and (MyTarget ~= nil) and ((MyTarget:IsMonster()) or not ((MyTarget:IsMyPartyMember()) or (MyTarget:IsMe()))) then
ClearTargets();
CancelTarget(false);
CancelTarget(false);
CancelTarget(false);
end;
end;
end;

Use command "HealerFix" to activate/deactivate it.

NAO CONSEGUI ATIVAR aki... alguem pod me ajuda ?!

========================================================================

Code:
HealerStatus = false;

function OnCreate()
    this:RegisterCommand("HealerFix", CommandChatType.CHAT_ALLY, CommandAccessLevel.ACCESS_ME);
end;

function OnCommand_HealerFix(vCommandChatType, vNick, vCommandParam)
    if not (HealerStatus) then
HealerStatus = true;
ShowToClient("Heal Fix","Fixing Is Activated.");
    else
HealerStatus = false;
ShowToClient("Heal Fix","Fixing Is Deactivated.");    
    end;
end;

function OnLTick1s()
    local myself = GetMe();
    local MyTarget = GetTarget();
    if (HealerStatus) then
if (myself ~= nil) and not (myself:IsAlikeDeath()) and (MyTarget ~= nil) and ((MyTarget:IsMonster()) or not ((MyTarget:IsMyPartyMember()) or (MyTarget:IsMe()))) then
ClearTargets();
CancelTarget(false);
end;
    end;
end;

Esse plugin serve apenas para deixar sem Healer sem target. Existem alguns mobs, como em Harnak que puxam o target do Healer. Dai, no tower, o Healer não pega o target dos players da party pra healer.

Eu uso. E por sinal, é muito bom.
Sobre sua dúvida, você mesmo já tem a resposta.

Use command "HealerFix" to activate/deactivate it.

É só digitar: /HealerFix
E o plugin vai iniciar.

(02-05-2013 08:56 AM)Marv Wrote:  Fecha o jogo, joga o plugin na pasta plugin e inicia um novo jogo.

Ativa automaticamente, não precisa fazer mais nada.

Depende Marv..

90% dos plugins dependem de algum comando pra iniciar.
Isso evita que o Tower sobrecarregue a memória e o uso da CPU.

.


[ RETIRED ]
...from retail!



[Image: 201628.png]
02-05-2013 11:18 AM
Find all posts by this user Quote this message in a reply
Marv Offline
VIP Member
***

Posts: 276
Joined: Apr 2012
Reputation: 15
Version: 1.4.1.110
Post: #214
RE: Portuguese Area

É ... Pq não costumo usar esse tipo de plugin.
Uso alguns como part invite, passar lideranca, fix target ....

Eu, eu ando de passo leve pra não acordar o dia
Sou da noite a companheira mais fiel qu'ela queria!
Big Grin
(This post was last modified: 02-05-2013 20:39 PM by Marv.)
02-05-2013 20:39 PM
Find all posts by this user Quote this message in a reply
sergiospfc Offline
Ratman Chieftain
*

Posts: 25
Joined: Sep 2011
Reputation: 0
Version: 1.4.1.118
Post: #215
RE: Portuguese Area

Alguem sabe algum script que funcione pra invitar o cov, o cov me buffar e sair da party?

Obrigado
02-06-2013 03:45 AM
Find all posts by this user Quote this message in a reply
NaoJogoMais Offline
I'm Watching You!
**

Posts: 924
Joined: Oct 2012
Reputation: 194
Version: 1.4.2.132
Post: #216
RE: Portuguese Area

Não conheço. Abre um tópico questionando ou procura no fórum por "cov"

.


[ RETIRED ]
...from retail!



[Image: 201628.png]
02-06-2013 05:29 AM
Find all posts by this user Quote this message in a reply
Marv Offline
VIP Member
***

Posts: 276
Joined: Apr 2012
Reputation: 15
Version: 1.4.1.110
Post: #217
RE: Portuguese Area

já vi tópico de cov buffar aqui no fórum. Dá uma olhada

Eu, eu ando de passo leve pra não acordar o dia
Sou da noite a companheira mais fiel qu'ela queria!
Big Grin
02-06-2013 08:23 AM
Find all posts by this user Quote this message in a reply
yagogt Offline
Elpy
*

Posts: 3
Joined: Jan 2012
Reputation: 0
Version: 1.4.2.133
Post: #218
RE: Portuguese Area

Alguem ai tem como me ajudar no Script auto argument to tendo mo problema aki

Alguem manda um tutorial porfavor precisando mesmo
02-06-2013 14:50 PM
Find all posts by this user Quote this message in a reply
NaoJogoMais Offline
I'm Watching You!
**

Posts: 924
Joined: Oct 2012
Reputation: 194
Version: 1.4.2.132
Post: #219
RE: Portuguese Area

Eu não conheço nenhum, mas acho que já vi alguma coisa no fórum.
Procura por ARGUMENT

.


[ RETIRED ]
...from retail!



[Image: 201628.png]
02-06-2013 15:26 PM
Find all posts by this user Quote this message in a reply
TheBl4ckPhoenix Offline
(^.^)
****

Posts: 1,887
Joined: Mar 2012
Reputation: 601
Version: 1.4.3.143
Post: #220
RE: Portuguese Area

noh
noh
noh
noh.
02-06-2013 15:30 PM
Find all posts by this user Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Area Interlude SrBariga 9 6,185 02-11-2015 15:00 PM
Last Post: lurubul



User(s) browsing this thread: