questo e lo script per favore provatelo e aggiustatelo
- Code: Select all
using System;
using DOL;
using DOL.GS;
using DOL.Events;
using DOL.Database;
using System.Collections;
using DOL.GS.PacketHandler;
namespace DOL.GS
{
[NPCGuildScript("EXP")]
public class EXP : GameNPC
{
public override bool AddToWorld()
{
Name = "GIVE ME TOTEM OF EXP";
GuildName = "Before Right Click on Me";
Level = 50;
Size = 100;
Model = 897;
//Realm = 6;
base.AddToWorld();
return true;
}
public override bool Interact(GamePlayer player)
{
if(base.Interact(player))
{
TurnTo(player,250);
SendReply(player, "Hail Traveler!\n\n"+
"I offer you REALM POINT in exchange for precious crystals...\n"+
"Here are my rates for the following crystals:"+
"\nRed Crystal: 3000 RP"+
"\nHand any crystals to me to recieve your reward!");
return true;
}
return false;
}
public override bool ReceiveItem(GameLiving source, InventoryItem item)
{
GamePlayer player = source as GamePlayer;
if(player == null || item == null) return false;
if(WorldMgr.GetDistance(this,player) > WorldMgr.INTERACT_DISTANCE)
{
player.Out.SendMessage("Sei troppo lontano per darmi qualcosa " + GetName(0, false) + ".", eChatType.CT_System, eChatLoc.CL_SystemWindow);
return false;
}
if (item.Id_nb == "3mxp") //totemofexp
{
player.Out.SendMessage("Grazie ecco la tua ricompensa...", eChatType.CT_System, eChatLoc.CL_SystemWindow);
player.GainExperience(9000000 * item.Count);
player.Inventory.RemoveItem(item);
return true;
}
if (item.Id_nb == "raretotem") //totemofexp
{
player.Out.SendMessage("Grazie ecco la tua ricompensa...", eChatType.CT_System, eChatLoc.CL_SystemWindow);
player.GainExperience(500000000);
player.Inventory.RemoveItem(item);
return true;
}
return false;
}
public void SendReply(GamePlayer player, string msg)
{
player.Out.SendMessage(msg, eChatType.CT_System, eChatLoc.CL_PopupWindow);
}
}
}