Kod:
/*
* Created by SharpDevelop.
* User: Steve
* Date: 09.07.2004
* Time: 20:07
* Site: www.gamesfor.net
*/
using System;
using System.Collections;
using Server;
using Server.Items;
using Server.Mobiles;
namespace Server.Scripts.Commands
{
public class UnEquip
{
public static void Initialize()
{
Server.Commands.Register( "Soyun", AccessLevel.Player, new CommandEventHandler( UnEquip_OnCommand ) );
//Server.Commands.Register( "Unequip", AccessLevel.Player, new CommandEventHandler( UnEquip_OnCommand ) );
}
[Usage( "UnEquip" )]
public static void UnEquip_OnCommand( CommandEventArgs e )
{
Container mobilePack = e.Mobile.Backpack;
ArrayList equipitems = new ArrayList(e.Mobile.Items);
foreach (Item equiped in equipitems)
{
if ((equiped.Layer != Layer.Bank) && (equiped.Layer != Layer.Backpack) && (equiped.Layer != Layer.Hair) && (equiped.Layer != Layer.FacialHair) && (equiped.Layer != Layer.Mount))
{
mobilePack.DropItem( equiped );
}
}
}
}
}
* Created by SharpDevelop.
* User: Steve
* Date: 09.07.2004
* Time: 20:07
* Site: www.gamesfor.net
*/
using System;
using System.Collections;
using Server;
using Server.Items;
using Server.Mobiles;
namespace Server.Scripts.Commands
{
public class UnEquip
{
public static void Initialize()
{
Server.Commands.Register( "Soyun", AccessLevel.Player, new CommandEventHandler( UnEquip_OnCommand ) );
//Server.Commands.Register( "Unequip", AccessLevel.Player, new CommandEventHandler( UnEquip_OnCommand ) );
}
[Usage( "UnEquip" )]
public static void UnEquip_OnCommand( CommandEventArgs e )
{
Container mobilePack = e.Mobile.Backpack;
ArrayList equipitems = new ArrayList(e.Mobile.Items);
foreach (Item equiped in equipitems)
{
if ((equiped.Layer != Layer.Bank) && (equiped.Layer != Layer.Backpack) && (equiped.Layer != Layer.Hair) && (equiped.Layer != Layer.FacialHair) && (equiped.Layer != Layer.Mount))
{
mobilePack.DropItem( equiped );
}
}
}
}
}
Download : Soyun Komutu
Boyut: mb - Hit : 91
Boyut: mb - Hit : 91
Yorumlar
Henüz yorum yapılmamıştır.
|
OylamalarOylama :![]()
Üyelerin oylama ortalaması (10 dışında) : Henüz Oylanmamış
Oylar: 0 |
Benzer Sayfalar
| Sayfalar | Yorumlar | Gönderen | Tarih |
| At Temizleme Komutu | 0 | Weight | 17-04-2011 |
| Ressme Komutu | 0 | ubeyid | 23-08-2009 |
| Emote Komutu | 0 | ubeyid | 23-08-2009 |
| Taşa Çevirme Komutu | 0 | ubeyid | 23-08-2009 |
| Bandage Self Komutu | 0 | ubeyid | 23-08-2009 |







