Pour prendre les musiques sur youtube (et SEULEMENT les musiques), j'ai trouvé le site YoutubeConvertor, tu as juste a prendre l'adresse de la musique et tu la copie sur ce site, après, faut aussi comprendre l'anglais !!! ^^
var pinv = player.getInventory();
var dejaFait;
for(i = 0; i < 40; i++)
{
var thisItem = pinv.getItemInSlot(i);
if (thisItem != null)
{
if (thisItem.getItemID() == 349)
{
if (dejaFait)
{
chat.print("Merci, mais je n'ai plus faim ... Peut-etre une prochaine fois !");
break;
}
if (thisItem.getQuantity() > 1)
{
thisItem.setQuantity(thisItem.getQuantity() - 1);
pinv.setSlot(i, thisItem);
}
else
{
pinv.emptySlot(i);
}
var diamond = new Item(264, 1);
pinv.addItem(diamond);
chat.print("Oh, merci beaucoup ! Tenez en echange de votre generosite !");
dejaFait = true;
break;
}
}
}
var pinv = player.getInventory();
var dejaFait;
for(i = 0; i < 40; i++)
{
var thisItem = pinv.getItemInSlot(i);
if (thisItem != null)
{
if (thisItem.getItemID() == 39)
{
if (dejaFait)
{
chat.print("");
break;
}
if (thisItem.getQuantity() > 1)
{
thisItem.setQuantity(thisItem.getQuantity() - 1);
pinv.setSlot(i, thisItem);
}
else
{
pinv.emptySlot(i);
}
var diamond = new Item(347, 1);
pinv.addItem(diamond);
chat.print("Un champignon ? Merci gamin, voila pour toi.");
dejaFait = true;
break;
}
}
}
var pinv = player.getInventory();
for(i = 0; i < 40; i++)
{
var thisItem = pinv.getItemInSlot(i);
if (thisItem != null)
{
if (thisItem.getItemID() == 39)
{
if (thisItem.getQuantity() > 1)
{
thisItem.setQuantity(thisItem.getQuantity() - 1);
pinv.setSlot(i, thisItem);
}
else
{
pinv.emptySlot(i);
}
var diamond = new Item(347, 1);
pinv.addItem(diamond);
chat.print("Un champignon ? Merci gamin, voila pour toi.");
setTimeout(function()
{
chat.print("[Ceci s'affichera 4000 millisecondes après l'échange]");
}, 4000);
break;
}
}
}