OTHispano
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.

Ir abajo
Yerenix
Yerenix
Aportador
Mensajes Mensajes : 98

Velocidad disminuye al llevar muchos items Empty Velocidad disminuye al llevar muchos items

Dom Sep 25, 2011 12:24 am
Reputación del mensaje :100% (1 voto)
Hola, les traigo un script que encontrè paseando por ahì. Se trata de un creature event que disminuye la velocidad cuando llevas demasiados items... Algo parecido a Lineage 2.

En creaturescripts\scripts crear un archivo lua llamado getspeed.lua y agregar dentro lo siguiente:
Código:
--[[ FUNCTION MADE BY RICARDO IANELLI FOR THE AVATAR ONLINE ATS - For more informations, check: http://forums.otserv.com.br/f19/avatar-online-avatar-ats-134459 ]]

 function onThink(cid, interval)
   
                          local speed, base, peso = getCreatureSpeed(cid), getCreatureBaseSpeed(cid), getPlayerFreeCap(cid)
                        local nspeed = (math.floor(((peso / 5 ) + (base))))   
           
        if speed ~= nspeed then
            doChangeSpeed(cid, (nspeed - speed))
        end

Agregar lo siguiente en creaturescripts.xml
Código:
<event type="think" name="getspeed" event="script" value="getspeed.lua"/>

En login.lua registrar lo siguiente:
Código:
registerCreatureEvent(cid, "getspeed")

Listo, ya tenemos todo agregado, y para quienes quieran verificar si este script està funcionando correctamente, agregamos debajo de if speed ~= nspeed then:
Código:
doPlayerSendTextMessage(cid, TALKTYPE_ORANGE_1, "Sua velocidade foi trocada com sucesso de "..speed.." para "..nspeed..".")

Los creditos del script estàn dentro... espero que les guste.

SI TE SIRVIO O TE GUSTO DAME ++REP!
°ஃŠﺕρξŘθஃ°
°ஃŠﺕρξŘθஃ°
Aportador
Mensajes Mensajes : 213

Velocidad disminuye al llevar muchos items Empty Re: Velocidad disminuye al llevar muchos items

Dom Sep 25, 2011 12:56 am
Jajaja esta bueno Very Happy 10/10 +rep Wink
ﻝhonLedit
ﻝhonLedit
Moderador
Mensajes Mensajes : 312
http://www.otsuporter.com/

Velocidad disminuye al llevar muchos items Empty Re: Velocidad disminuye al llevar muchos items

Dom Sep 25, 2011 3:34 pm
a esta padre para un rl xD
Contenido patrocinado

Velocidad disminuye al llevar muchos items Empty Re: Velocidad disminuye al llevar muchos items

Volver arriba
Permisos de este foro:
No puedes responder a temas en este foro.