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

Ir abajo
PebitoFker
PebitoFker
Miembro
Mensajes Mensajes : 9

[Tutorial] Cambiar First Items. Empty [Tutorial] Cambiar First Items.

Sáb Jul 30, 2011 11:08 pm
[Tutorial] Cambiar First Items. Aporte11
UBICACION: OT/DATA/CREATURESCRIPTS/SCRIPTS
Abrimos el archivo llamado firstitems.lua:
Código:
local firstItems = {}
firstItems[0] =
{
2173,
2525,
3965,
2124,
2457,
2647,
2643
}
firstItems[1] =
{
8871,
2525,
2190,
2124,
2457,
2647,
2643
}
firstItems[2] =
{
2173,
2525,
2182,
2124,
2457,
2647,
2643
}
firstItems[3] =
{
2173,
2525,
2399,
2124,
2457,
2647,
2643
}
firstItems[4] =
{
2173,
2525,
2428,
2124,
2457,
2647,
2643
}

function onLogin(cid)
if getPlayerStorageValue(cid, 30001) == -1 then
for i = 1, table.maxn(firstItems[getPlayerVocation(cid)]) do
doPlayerAddItem(cid, firstItems[getPlayerVocation(cid)][i], 1)
end
if getPlayerSex(cid) == 0 then
doPlayerAddItem(cid, 2463, 1)
else
doPlayerAddItem(cid, 2463, 1)
end
local bag = doPlayerAddItem(cid, 11257, 1)
doAddContainerItem(bag, 2160, 10)
doAddContainerItem(bag, 2554, 1)
doAddContainerItem(bag, 2120, 1)
doAddContainerItem(bag, 7618, 1)
setPlayerStorageValue(cid, 30001, 1)
end
return TRUE
end
Nos situamos en esta parte, como ejemplo:
Código:
local firstItems = {}
firstItems[0] =
{
2173,
2525,
3965,
2124,
2457,
2647,
2643
}

Ahora les explicare lo que pueden cambiar y algunos detalles del Script
Estos id's, son el equipo: 2173,2525,3965,2124,2457,2647,2643, pueden cambiarlo, pero en orden,
es decir, que en donde haya un "id" de helmet, cambien por el de otro helmet, para que salga ordenado.
Algunos detalles que se tienen que tomar en cuenta:
firstItems[0] : Items para: No Vocation.
firstItems[1] : Items para: Sorcerer.
firstItems[2] : Items para: Druid.
firstItems[3] : Items para: Paladin.
firstItems[4] : Items para: Knight.
ESPERO LES SIRVA, SUERTE CON SU OT Wink .
Dj Majestick
Dj Majestick
Miembro
Mensajes Mensajes : 131

[Tutorial] Cambiar First Items. Empty Re: [Tutorial] Cambiar First Items.

Jue Sep 08, 2011 10:41 am
Eso Adaba Buscando Men
buen aporte
+Rep
Volver arriba
Permisos de este foro:
No puedes responder a temas en este foro.