Alt 08-09-2007   #1 (permalink)
Acemi Oyuncu
Avatar Yok
Üyelik tarihi: Aug 2007
Mesajlar: 39
Konuları: 36
REP Gücü: 2
REP Puanı: 35
Arcamenel is on a distinguished road
Standart Artifack deed


Kod:
///////////////////
//    By Nerun   //
// Avatar System //
//    v.0.9.3    //
///////////////////
using System; 
using System.Net; 
using Server; 
using Server.Accounting; 
using Server.Gumps; 
using Server.Items; 
using Server.Mobiles; 
using Server.Network; 

namespace Server.Items
{

	public class ArtifactDeed : Item
	{

		[Constructable]
		public ArtifactDeed() : this( null )
		{
		}

		[Constructable]
		public ArtifactDeed ( string name ) : base ( 0x14F0 )
		{
			Name = "Artifact Deed";
			LootType = LootType.Blessed;
			Hue = 1172;
		}

		public ArtifactDeed ( Serial serial ) : base ( serial )
		{
		}

      		public override void OnDoubleClick( Mobile from ) 
      		{
			if ( !IsChildOf( from.Backpack ) )
			{
				from.SendLocalizedMessage( 1042001 );
			}
			else
			{ 
				from.SendGump( new ArtifactGump( from, this ) ); 
			}
		}

		public override void Serialize ( GenericWriter writer)
		{
			base.Serialize ( writer );

			writer.Write ( (int) 0);
		}

		public override void Deserialize( GenericReader reader )
		{
			base.Deserialize ( reader );

			int version = reader.ReadInt();
		}
	}
}

namespace Server.Gumps 
{ 
   public class ArtifactGump : Gump 
   { 
      private Mobile m_Mobile;
      private Item m_Deed;
 

      public ArtifactGump( Mobile from, Item deed ) : base( 30, 20 ) 
      { 
         m_Mobile = from;
	 m_Deed = deed; 
	
	 AddPage( 1 ); 

	 AddBackground( 0, 0, 300, 400, 3000 ); 
         AddBackground( 8, 8, 284, 384, 5120 ); 

         AddLabel( 40, 12, 37, "Artifact List" );  

         Account a = from.Account as Account; 


         AddLabel( 52, 40, 37, "Weapons" ); 
         AddButton( 12, 40, 4005, 4007, 0, GumpButtonType.Page, 2 ); 
         AddLabel( 52, 60, 37, "Armor" ); 
         AddButton( 12, 60, 4005, 4007, 0, GumpButtonType.Page, 3 ); 
         AddLabel( 52, 80, 37, "Jewelery" ); 
         AddButton( 12, 80, 4005, 4007, 10, GumpButtonType.Page, 4 ); 
         AddLabel( 52, 100, 37, "Shields" ); 
         AddButton( 12, 100, 4005, 4007, 0, GumpButtonType.Page, 5 );
         AddLabel( 52, 120, 37, "Hats & Masks" ); 
         AddButton( 12, 120, 4005, 4007, 0, GumpButtonType.Page, 6 );  
         AddLabel( 52, 360, 37, "Close" ); 
         AddButton( 12, 360, 4005, 4007, 0, GumpButtonType.Reply, 0 );
	
	 AddPage( 2 ); 

         AddBackground( 0, 0, 300, 400, 3000 ); 
         AddBackground( 8, 8, 284, 384, 5120 ); 

	 AddLabel( 40, 12, 37, "Weapons List" );
        	
          

         AddLabel( 52, 40, 37, "Axe of the Heavens" ); 
         AddButton( 12, 40, 4005, 4007, 1, GumpButtonType.Reply, 1 ); 
         AddLabel( 52, 60, 37, "Blade of Insanity" ); 
         AddButton( 12, 60, 4005, 4007, 2, GumpButtonType.Reply, 2 ); 
         AddLabel( 52, 80, 37, "Blade of the Righteous" ); 
         AddButton( 12, 80, 4005, 4007, 3, GumpButtonType.Reply, 3 ); 
         AddLabel( 52, 100, 37, "Bone Crusher" ); 
         AddButton( 12, 100, 4005, 4007, 4, GumpButtonType.Reply, 4 ); 
         AddLabel( 52, 120, 37, "Breath of the Dead" ); 
         AddButton( 12, 120, 4005, 4007, 5, GumpButtonType.Reply, 5 ); 
         AddLabel( 52, 140, 37, "Frostbringer" ); 
         AddButton( 12, 140, 4005, 4007, 6, GumpButtonType.Reply, 6 ); 
         AddLabel( 52, 160, 37, "Legacy of the Dread Lord" ); 
         AddButton( 12, 160, 4005, 4007, 7, GumpButtonType.Reply, 7 ); 
         AddLabel( 52, 180, 37, "Serpent's Fang" ); 
         AddButton( 12, 180, 4005, 4007, 8, GumpButtonType.Reply, 8 ); 
         AddLabel( 52, 200, 37, "Staff of the Magi" ); 
         AddButton( 12, 200, 4005, 4007, 9, GumpButtonType.Reply, 9 ); 
         AddLabel( 52, 220, 37, "The Beserker's Maul" ); 
         AddButton( 12, 220, 4005, 4007, 10, GumpButtonType.Reply, 10 ); 
         AddLabel( 52, 240, 37, "The Dragon Slayer" ); 
         AddButton( 12, 240, 4005, 4007, 11, GumpButtonType.Reply, 11 );  
         AddLabel( 52, 260, 37, "Titans Hammer" ); 
         AddButton( 12, 260, 4005, 4007, 12, GumpButtonType.Reply, 12 );
         AddLabel( 52, 280, 37, "The Taskmaster" ); 
         AddButton( 12, 280, 4005, 4007, 13, GumpButtonType.Reply, 13 );
         AddLabel( 52, 300, 37, "Zyronic Claw" ); 
         AddButton( 12, 300, 4005, 4007, 14, GumpButtonType.Reply, 14 );
         AddLabel( 52, 320, 37, "The Dryad Bow" );
         AddButton( 12, 320, 4005, 4007, 15, GumpButtonType.Reply, 15 );


         AddLabel( 52, 360, 37, "Main Menu" ); 
         AddButton( 12, 360, 4005, 4007, 0, GumpButtonType.Page, 1 ); 
	

         AddPage( 3 ); 

         AddBackground( 0, 0, 300, 400, 3000 ); 
         AddBackground( 8, 8, 284, 384, 5120 ); 

         AddLabel( 40, 12, 37, "Armor List" ); 

         
         AddLabel( 52, 40, 37, "Armor of Fortune" ); 
         AddButton( 12, 40, 4005, 4007, 16, GumpButtonType.Reply, 1 ); 
         AddLabel( 52, 60, 37, "Gauntlets of Nobility" ); 
         AddButton( 12, 60, 4005, 4007, 17, GumpButtonType.Reply, 2 ); 
         AddLabel( 52, 80, 37, "Helm of Insight" ); 
         AddButton( 12, 80, 4005, 4007, 18, GumpButtonType.Reply, 3 ); 
         AddLabel( 52, 100, 37, "Holy Knight's Breastplate" ); 
         AddButton( 12, 100, 4005, 4007, 19, GumpButtonType.Reply, 4 ); 
         AddLabel( 52, 120, 37, "Jackal's Collar" ); 
         AddButton( 12, 120, 4005, 4007, 20, GumpButtonType.Reply, 5 ); 
         AddLabel( 52, 140, 37, "Leggings of Bane" ); 
         AddButton( 12, 140, 4005, 4007, 21, GumpButtonType.Reply, 6 ); 
         AddLabel( 52, 160, 37, "Midnight Bracers" ); 
         AddButton( 12, 160, 4005, 4007, 22, GumpButtonType.Reply, 7 ); 
         AddLabel( 52, 180, 37, "Ornate Crown of the Harrower" ); 
         AddButton( 12, 180, 4005, 4007, 23, GumpButtonType.Reply, 8 ); 
         AddLabel( 52, 200, 37, "Shadow Dancer Leggings" ); 
         AddButton( 12, 200, 4005, 4007, 24, GumpButtonType.Reply, 9 ); 
         AddLabel( 52, 220, 37, "The Inquisitor's Resolution" ); 
         AddButton( 12, 220, 4005, 4007, 25, GumpButtonType.Reply, 10 ); 
         AddLabel( 52, 240, 37, "Tunic of Fire" ); 
         AddButton( 12, 240, 4005, 4007, 26, GumpButtonType.Reply, 11 ); 
         AddLabel( 52, 260, 37, "Voice of the Fallen King" ); 
         AddButton( 12, 260, 4005, 4007, 27, GumpButtonType.Reply, 12 ); 
         

         AddLabel( 52, 360, 37, "Main Menu" ); 
         AddButton( 12, 360, 4005, 4007, 0, GumpButtonType.Page, 1 );
	 

	 AddPage( 4 ); 

         AddBackground( 0, 0, 300, 400, 3000 ); 
         AddBackground( 8, 8, 284, 384, 5120 );  

         AddLabel( 40, 12, 37, "Jewelery List" ); 

         

         AddLabel( 52, 40, 37, "Bracelet of Health" ); 
         AddButton( 12, 40, 4005, 4007, 29, GumpButtonType.Reply, 1 ); 
         AddLabel( 52, 60, 37, "Ornament of the Magician" ); 
         AddButton( 12, 60, 4005, 4007, 30, GumpButtonType.Reply, 2 ); 
         AddLabel( 52, 80, 37, "Ring of the Elements" ); 
         AddButton( 12, 80, 4005, 4007, 31, GumpButtonType.Reply, 3 ); 
         AddLabel( 52, 100, 37, "Ring of the Vile" );
	 AddButton( 12, 100, 4005, 4007, 32, GumpButtonType.Reply, 4 ); 

         AddLabel( 52, 360, 37, "Main Menu" ); 
         AddButton( 12, 360, 4005, 4007, 0, GumpButtonType.Page, 1 );
	  

	 AddPage( 5 ); 
  
         AddBackground( 0, 0, 300, 400, 3000 ); 
         AddBackground( 8, 8, 284, 384, 5120 );

         AddLabel( 40, 12, 37, "Shields List" ); 

         

         AddLabel( 52, 40, 37, "Ægis" ); 
         AddButton( 12, 40, 4005, 4007, 34, GumpButtonType.Reply, 1 ); 
         AddLabel( 52, 60, 37, "Arcane Shield" ); 
         AddButton( 12, 60, 4005, 4007, 35, GumpButtonType.Reply, 2 );  

         AddLabel( 52, 360, 37, "Main Menu" ); 
         AddButton( 12, 360, 4005, 4007, 0, GumpButtonType.Page, 1 );


	 AddPage( 6 ); 

         AddBackground( 0, 0, 300, 400, 3000 ); 
         AddBackground( 8, 8, 284, 384, 5120 );  

         AddLabel( 40, 12, 37, "Hats & Masks List" ); 

         

         AddLabel( 52, 40, 37, "Divine Countenance" ); 
         AddButton( 12, 40, 4005, 4007, 36, GumpButtonType.Reply, 1 ); 
         AddLabel( 52, 60, 37, "Hat of the Magi" ); 
         AddButton( 12, 60, 4005, 4007, 37, GumpButtonType.Reply, 2 ); 
         AddLabel( 52, 80, 37, "Hunters Headdress" ); 
         AddButton( 12, 80, 4005, 4007, 38, GumpButtonType.Reply, 3 ); 
         AddLabel( 52, 100, 37, "Spirit of the Totem" );
	 AddButton( 12, 100, 4005, 4007, 39, GumpButtonType.Reply, 4 ); 

         AddLabel( 52, 360, 37, "Main Menu" ); 
         AddButton( 12, 360, 4005, 4007, 0, GumpButtonType.Page, 1 );



      } 


      public override void OnResponse( NetState state, RelayInfo info ) 
      { 
         Mobile from = state.Mobile; 

         switch ( info.ButtonID ) 
         { 
            case 0: //Close Gump 
            { 
               from.CloseGump( typeof( ArtifactGump ) );	 
               break; 
            } 
             case 1: // Axe of the Heavens 
            { 
		Item item = new AxeOfTheHeavens();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
            case 2: // Blade of insanity 
            { 
		Item item = new BladeOfInsanity();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
            case 3: //Blade of the Righteous
            { 
		Item item = new BladeOfTheRighteous();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
            case 4: //Bone Crusher 
            { 
		Item item = new BoneCrusher();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
            case 5: //Breath of the Dead 
            { 
		Item item = new BreathOfTheDead();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
            case 6: //Frostbringer 
            { 
		Item item = new Frostbringer();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
            case 7: //Legacy of the Dread Lord
            { 
		Item item = new LegacyOfTheDreadLord();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
            case 8: //Serpent's Fang 
            { 
		Item item = new SerpentsFang();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
	    case 9: //Staff of the Magi
	    { 
		Item item = new StaffOfTheMagi();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 10: //The Beserker's Maul 
            { 
		Item item = new TheBeserkersMaul();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 11: //The Dragon Slayer 
            { 
		Item item = new TheDragonSlayer();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 12: //Titans Hammer 
            { 
		Item item = new TitansHammer();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 13: //The Taskmaster 
            { 
		Item item = new TheTaskmaster();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
	    case 14: //Zyronic Claw
            { 
		Item item = new ZyronicClaw();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
        case 15: //The Dryad Bow
            {
        Item item = new TheDryadBow();
        item.LootType = LootType.Blessed;
        from.AddToBackpack( item );
        from.CloseGump( typeof( ArtifactGump ) );
        m_Deed.Delete();
        break;
            } 
	    case 16: //Armor of Fortune 
            { 
		Item item = new ArmorOfFortune();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
	    case 17: //Gauntlets of Nobility 
            { 
		Item item = new GauntletsOfNobility();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
 	    case 18: //Helm of Insight 
            { 
		Item item = new HelmOfInsight();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 19: //Holy Knights Breastplate 
            { 
		Item item = new HolyKnightsBreastplate();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 20: //Jackal's Collar 
            { 
		Item item = new JackalsCollar();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 21: //Leggings of Bane 
            { 
		Item item = new LeggingsOfBane();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 22: //Midnight Bracers 
            { 
		Item item = new MidnightBracers();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 23: //Ornate Crown of the Harrower 
            { 
		Item item = new OrnateCrownOfTheHarrower();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 24: //Shadow Dancer Leggings 
            { 
		Item item = new ShadowDancerLeggings();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 25: //Inquisitor's Resolution 
            { 
		Item item = new InquisitorsResolution();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 26: //Tunic of Fire 
            { 
		Item item = new TunicOfFire();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 27: //Voice of the Fallen King 
            { 
		Item item = new VoiceOfTheFallenKing();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            
            } 
	    case 29: //Bracelet of Health 
            { 
		Item item = new BraceletOfHealth();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 30: //Ornament of the Magician 
            { 
		Item item = new OrnamentOfTheMagician();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 31: //Ring of the Elements 
            { 
		Item item = new RingOfTheElements();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
	    case 32: //Ring of the Vile 
            { 
		Item item = new RingOfTheVile();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 34: //Aegis 
            { 
		Item item = new Aegis();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 35: //Arcane Shield 
            { 
		Item item = new ArcaneShield();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 36: //Divine Countenance 
            { 
		Item item = new DivineCountenance();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 37: //Hat of the Magi
            { 
		Item item = new HatOfTheMagi();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 38: //Hunters Headdress 
            { 
		Item item = new HuntersHeaddress();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            }
	    case 39: //Spirit of the Totem
            { 
		Item item = new SpiritOfTheTotem();
		item.LootType = LootType.Blessed;
		from.AddToBackpack( item ); 
		from.CloseGump( typeof( ArtifactGump ) );
		m_Deed.Delete();
		break;
            } 
	         
         }    
      } 
   } 
}
Arcamenel isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 08-26-2007   #2 (permalink)
Usta Oyuncu
yavuz - ait Kullanıcı Resmi (Avatar)
Üyelik tarihi: Aug 2007
Mesajlar: 151
Konuları: 129
Favori Oyunu: Counter-Strike 1.6,Max Payne,Football Manager 2008
REP Gücü: 127
REP Puanı: 12560
yavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond reputeyavuz has a reputation beyond repute
yavuz - MSN üzeri Mesaj gönder
Standart

ElleriNe SaĞLıK
yavuz isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 04-01-2008   #3 (permalink)
Yeni Oyuncu
Avatar Yok
Üyelik tarihi: Mar 2008
Yaş: 32
Mesajlar: 6
Konuları: 0
Favori Oyunu: Yok
REP Gücü: 0
REP Puanı: 25
speedcafe is on a distinguished road
Standart

tşklerr
speedcafe isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 04-02-2008   #4 (permalink)
Yeni Oyuncu
Avatar Yok
Üyelik tarihi: Nov 2007
Yaş: 18
Mesajlar: 7
Konuları: 0
REP Gücü: 0
REP Puanı: 25
³AlP³ is on a distinguished road
Standart

Arkadaşlar Bu scriptte 3 artifact hata verebılır eğer öyle olursa onları deedin içinden kaldırmanız gerekicekdir.

BladeOfTheRighteous
ZyronicClaw
Titans Hammer

eger dedigim gibi hata vericek olursa bu artifactleri öncelikle scrıptteki gumpdan kaldırın daha sonra altta
misal verıorm:
case 13: //The Taskmaster
{
Item item = new TheTaskmaster();
item.LootType = LootType.Blessed;
from.AddToBackpack( item );
from.CloseGump( typeof( ArtifactGump ) );
m_Deed.Delete();
break;


bunu tamamen silin
Ve gump dedıgım

AddButton( 12, 260, 4005, 4007, 12, GumpButtonType.Reply, 12 );
AddLabel( 52, 280, 37, "The Taskmaster" );


2sınıde tamamen kaldırmanız gerekir. { bunlara dikkat etmelisiniz ufak bi oynayış bie serverı açmaya bilir.
³AlP³ isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Cevapla

Seçenekler
Stil

Yetkileriniz
Yeni Mesaj yazma yetkiniz Aktif değil dir.
Mesajlara Cevap verme yetkiniz aktif değil dir.
Eklenti ekleme yetkiniz Aktif değil dir.
Kendi Mesajınızı değiştirme yetkiniz Aktif değildir dir.

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-KodlarıKapalı
Trackbacks are Açık
Pingbacks are Açık
Refbacks are Açık

Gitmek istediğiniz klasörü seçiniz


Bütün Zaman Ayarları WEZ +3 olarak düzenlenmiştir. Şu Anki Saat: 14:17 .
Powered by vBulletin® Version 3.8.0 Beta 2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.

GameSFoR.NeT Kendi Sunucusunda Dosya Barındırmaz. Çeşitli Dosya Paylaşım Sitelerinin Linkleri Yayınlanır. Dosya İçeriklerinin Sorumluluğu, İndiren Kişiye ve Dosyayı Barındıran Sunucuya Aittir. Sitedeki materyallerin(kategori, resim, logo vs.) kopyalanması için izin alınmalıdır.. Report Abuse, Harassment, Scamming, Hacking, Warez, Crack, Divx, Mp3 or any Illegal Activity to wipau@gamesfor.net
Dost Siteler
Sitemap
1, 7, 2, 6, 8, 9, 141, 11, 12, 13, 14, 15, 16, 18, 19, 142, 22, 144, 24, 25, 27, 28, 140, 32, 33, 35, 36, 37, 38, 39, 40, 42, 41, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 143, 59, 60, 61, 62, 63, 64, 65, 66, 74, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 80, 81, 82, 87, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 131, 132, 202, 133, 134, 135, 136, 137, 138, 139, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 154, 156, 157, 159, 158, 160, 161, 162, 163, 164, 167, 165, 166, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 180, 181, 182, 183, 184, 185, 186, 201, 187, 188, 200, 189, 190, 191, 192, 193, 194, 195, 199, 196, 197, 198, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 224, 221, 222, 223, 225, 226, 231, 227, 229, 232, 228, 230, 233, 234, 235, 236, 238, 237, 239, 240, 241, 249, 244, 247, 242, 243, 245, 265, 246, 255, 248, 250, 251, 252, 253, 254, 257, 256, 258, 259, 262, 261, 260, 263, 264, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 278, 277, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 311, 310, 312, 313, 314,