come volevasi dimostrare... injection o razor il lag e la pesantezza del client sono uguali
non vedo xkè riscriptarmi tutto, rimango su razor
non vedo xkè riscriptarmi tutto, rimango su razor
Vash U'Sgrav [LorD] - Labora et Basta [KP] on UODreams ICQ: 150088146 MSN: iociriprovo chiocciola hotmail.com Non contattatemi su ICQ per scambio item o aste o spam di alcun genere. Se mi serve un item faccio il post sul forum, inutile che mi spammate su ICQ. This signature is powered by Gingillo |
var kryss1 = "0x400AFC1C"
var fork1 = "0x400BCAD0"
var spada1 = "0x401DCDBF"
var harvest1 = "0x4018C87B"
#Equippa Scudo
#=============
sub scudo()
if uo.objatlayer("Lhand") then
repeat
uo.exec("unequip Lhand")
wait(300)
until not uo.objatlayer("Lhand")
else
repeat
uo.equip("Lhand",scudo1)
wait(300)
until uo.objatlayer("Lhand")
endif
endsub
#Sub da eseguire da tasto per equippare armi
#===========================================
#La sintassi per la sub è la seguente:
#Sub nome
#equippa(arma,mani,scudo)
#endsub
#al posto di arma mettete una variabile o un seriale
#al posto di mani mettete 1 o 2, a seconda se l'arma è a 1 o 2 mani
#se mettete 1 al posto di scudo, vuol dire che volete che venga riequippato...
#..dopo che si passa da un'arma a 2 mani a quella specificata
#quando si passa da un'arma a 2 mani a una a mano singola
#se mettete qualsiasi altro numero, lo scudo non verrà riequippato automaticamente
#NOTA BENE: per disarmarsi, premere lo stesso tasto per equipparla quando è già equippata
sub equipkryss()
equippa(kryss1,1,1)
endsub
sub equipfork()
equippa(fork1,1,1)
endsub
sub equipsword()
equippa(spada1,1,1)
endsub
sub equipharvest()
equippa(harvest1,1,1)
endsub
sub prova2mani()
var ascia = "0x403EBB6E"
equippa(ascia,2,1)
endsub
#Script per equippare/disarmare l'arma Desiderata
#=================================================
#NON TOCCARE
sub equippa(weap,mani,scudo)
var togliscudo=0
if mani==1 then
if uo.objatlayer("Lhand") and uo.objatlayer("Lhand")<>scudo1 then
repeat
uo.unequip("Lhand")
wait(300)
until not uo.objatlayer("Lhand")
togliscudo=1
wait(300)
endif
if uo.objatlayer("Rhand") then
if uo.objatlayer("Rhand")<>weap then
repeat
uo.unequip("Rhand")
wait(300)
until not uo.objatlayer("Rhand")
wait(300)
repeat
uo.equip("Rhand",weap)
wait(300)
until uo.objatlayer("Rhand")==weap
else
repeat
uo.unequip("Rhand")
wait(300)
until not uo.objatlayer("Rhand")
endif
else
repeat
uo.equip("Rhand",weap)
wait(300)
until uo.objatlayer("Rhand")==weap
wait(300)
endif
if scudo==1 and togliscudo==1 and uo.objatlayer("Lhand")=="" then
repeat
uo.equip("Lhand",scudo1)
wait(300)
until uo.objatlayer("Lhand")==scudo1
wait(300)
endif
endif
if mani==2 then
if uo.objatlayer("Lhand")==weap then
repeat
uo.unequip("Lhand")
wait(300)
until not uo.objatlayer("Lhand")
else
if uo.objatlayer("Lhand") then
repeat
uo.unequip("Lhand")
wait(300)
until not uo.objatlayer("Lhand")
wait(300)
endif
if uo.objatlayer("Rhand") then
repeat
uo.unequip("Rhand")
wait(300)
until not uo.objatlayer("Rhand")
wait(300)
endif
repeat
uo.equip("Lhand",weap)
wait(300)
until uo.objatlayer("Lhand")==weap
endif
endif
endsub
Vash U'Sgrav [LorD] - Labora et Basta [KP] on UODreams ICQ: 150088146 MSN: iociriprovo chiocciola hotmail.com Non contattatemi su ICQ per scambio item o aste o spam di alcun genere. Se mi serve un item faccio il post sul forum, inutile che mi spammate su ICQ. This signature is powered by Gingillo |
Commenta