civilization benzeri oyun yapmak?
#21
(18-04-2019, 13:20)altnkurt : Öyle bi ayrım olduğunu sanmıyorum. Saydığın grupların hepsi birbiriyle kesişiyor.

mükemmel oyunu ileride şirketleşince yapmak şimdi ise daha tek yönlü bir strateji yapmak daha mı mantıklı?
Ara
Cevapla
#22
Stratejiden ziyade clickbait bi oyun yapmak daha mantıklı.
Sic Parvis Magna
Ara
Cevapla
#23
(01-05-2019, 04:48)altnkurt : Stratejiden ziyade clickbait bi oyun yapmak daha mantıklı.

clickbait oyunu açar mısın? bir oyun örneği de verir misin?
Ara
Cevapla
#24
faceb
(13-05-2019, 18:44)ojela_88 :
(01-05-2019, 04:48)altnkurt : Stratejiden ziyade clickbait bi oyun yapmak daha mantıklı.

clickbait oyunu açar mısın? bir oyun örneği de verir misin?

internet tabanlı dandik bi strateji oyunu geliştir civ tarzı olsun sonra facebooka gidip total war fotoları koyup şimdi oynayın diye link koy herkes tıklasın birde linke reklam ekle tıklarken ekstra bi sayfa olarak açılsın iyi kazanırsın.
Edit: Aynı şey telefon içinde geçerli xd
Ara
Cevapla
#25
(13-05-2019, 18:44)ojela_88 :
(01-05-2019, 04:48)altnkurt : Stratejiden ziyade clickbait bi oyun yapmak daha mantıklı.

clickbait oyunu açar mısın? bir oyun örneği de verir misin?

unknown.png
unknown.png

Böyle resimler koyup oyunu şöyle çıkması:

unknown.png
Sic Parvis Magna
Ara
Cevapla
#26
oyun değil ama meşhur bir örneğide bu xD
NbHzLZ.jpg
Ara
Cevapla
#27
sizce mükemmel oyun tutmaz mı? daha spesifik hiç yapılmamış şeylere yönelik oyunlar mı tutar hep? ve yapılmayan bir şey kaldı mı stratejide?
Ara
Cevapla
#28
(11-08-2019, 02:33)ojela_88 : sizce mükemmel oyun tutmaz mı? daha spesifik hiç yapılmamış şeylere yönelik oyunlar mı tutar hep? ve yapılmayan bir şey kaldı mı stratejide?
söz konusu strateji ve indie ise özgünlük asla tükenmez ama Özgünlük ve uygulayış eşit ölçüde önemli mesela benim arkadaş vardı steamda bir oyun yayınladı, oyun çok özgündü ama uygulama o kadar iyi olmadığı için tutmadı.


bu hevesin aklıma türki halkların tarihi ile ilgili bir oyun hayalimi hatırlattı. Allahın izniyle bir gün yapacağım sana da başarılar diliyorum.
Ara
Cevapla
#29
şimdi oyunu yapmak çok basit ama basit olduğu için ben sana kodları yollayım sen yap 2dk

ilk olarak boşluk boşluk (((((( hashtag yapıyoruz sonra şunları yazıyoruz
Veee bunları yazdıktan sonra sihirli kodlarımız devreye giriyor ve dünya haritası oluşuyıor
Kod:
using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;



namespace WindowsFormsApp2

{

public partial class Form1 : Form

{

double FirstNumber;

string Operation;

public Form1()

{

InitializeComponent();

}



private void button1_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text==null)

{

textBox1.Text = "1";

}

else

{

textBox1.Text = textBox1.Text + "1";

}

}



private void button2_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "0";

}

else

{

textBox1.Text = textBox1.Text + "0";

}

}



private void button3_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "2";

}

else

{

textBox1.Text = textBox1.Text + "2";

}

}



private void button4_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "3";

}

else

{

textBox1.Text = textBox1.Text + "3";

}

}



private void button5_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "4";

}

else

{

textBox1.Text = textBox1.Text + "4";

}

}



private void button6_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "5";

}

else

{

textBox1.Text = textBox1.Text + "5";

}

}



private void button7_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "6";

}

else

{

textBox1.Text = textBox1.Text + "6";

}

}



private void button8_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "7";

}

else

{

textBox1.Text = textBox1.Text + "7";

}

}



private void button9_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "8";

}

else

{

textBox1.Text = textBox1.Text + "8";

}

}



private void button10_Click(object sender, EventArgs e)

{

if (textBox1.Text == "0" && textBox1.Text == null)

{

textBox1.Text = "9";

}

else

{

textBox1.Text = textBox1.Text + "9";

}

}



private void button11_Click(object sender, EventArgs e)

{

textBox1.Text = textBox1.Text + ",";

}



private void button12_Click(object sender, EventArgs e)

{

FirstNumber = Convert.ToDouble(textBox1.Text);

textBox1.Text = null;

Operation = "+";

}



private void button13_Click(object sender, EventArgs e)

{

FirstNumber = Convert.ToDouble(textBox1.Text);

textBox1.Text = null;

Operation = "-";

}



private void button14_Click(object sender, EventArgs e)

{

FirstNumber = Convert.ToDouble(textBox1.Text);

textBox1.Text = null;

Operation = "*";

}



private void button15_Click(object sender, EventArgs e)

{

FirstNumber = Convert.ToDouble(textBox1.Text);

textBox1.Text = null;

Operation = "/";

}



private void button16_Click(object sender, EventArgs e)

{

double SecondNumber;

double Result;



SecondNumber = Convert.ToDouble(textBox1.Text);



if (Operation=="+")

{

Result = (FirstNumber + SecondNumber);

textBox1.Text = Convert.ToString(Result);

FirstNumber = Result;

}

if (Operation == "-")

{

Result = (FirstNumber - SecondNumber);

textBox1.Text = Convert.ToString(Result);

FirstNumber = Result;



}

if (Operation == "*")

{

Result = (FirstNumber * SecondNumber);

textBox1.Text = Convert.ToString(Result);

FirstNumber = Result;

}

if (Operation == "/")

if(SecondNumber==0)

{

textBox1.Text = "Uygulanamaz";

}

else

{

Result = (FirstNumber / SecondNumber);

textBox1.Text = Convert.ToString(Result);

FirstNumber = Result;

}

}



private void button17_Click(object sender, EventArgs e)

{

textBox1.Text = null;

}

}

}
İşte oyun yapmak bu kadar basit
Ara
Cevapla
#30
(11-08-2019, 02:33)ojela_88 : sizce mükemmel oyun tutmaz mı? daha spesifik hiç yapılmamış şeylere yönelik oyunlar mı tutar hep? ve yapılmayan bir şey kaldı mı stratejide?
civ6 yı tutorial ile oynasam ne kadar zevkli olur? öğrenme aşaması kaç saat sürer?
Ara
Cevapla
 




Konuyu Okuyanlar: 1 Ziyaretçi



Strategyturk Forumları

Strategyturk Forumları tüm Türk stratejiseverler için büyük ve kaliteli bir platform olma amacı güder. Forum içerisinde çok sayıda strateji oyunu için bölüm ve bu bölümlerde haber konuları, rehberler, mod tanıtımları, multiplayer etkinlikleri ve üye paylaşımları için alanlar yer alır.