Jump to content
MakeWebGames

Cetwar

Members
  • Posts

    15
  • Joined

  • Last visited

    Never

Cetwar's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Re: Need an artist I need unique images and not from google. I can get those from google myself ... Ah well.
  2. Re: Need an artist If I could at least pay more, I would. :|
  3. Hello, I need an artist, who is willing to create/draw images of units, vehicles, buildings, ... which must fit to web design. I can pay $5 per image and would need around 20 images - 200x200 and smaller (depends). Would be good if you have MSN so you can show me your previous designs/arts and I can show you web design and give you more info. You need to have paypal to receive funds. PM me, thank you!
  4. Re: [REVIEW] Cetwar Thank you. :)
  5. Re: What would you do with $100,000,000? I would buy some houses and give them to young, honest families. But even $1,000,000 is enough to live in peace till rest of the life.
  6. Re: Staff_items.php You need to specify where you want to insert the informations. You have INSERT INTO ITEMS ... yes but where into items. You need to do it like that: $m=$db->query("INSERT INTO items (value1,value2,value3,value4,value5,value6,value7,value8,value9,value10,value11,value12,value13,value14,value15,value16,value17,value18,value19,value20,value21) VALUES('',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},'$itmbuy',{$_POST['effect1on']},'$efx1',{$_POST['effect2on']},'$efx2',{$_POST['effect3on']},'$efx3', '$weapon', '$armor', '$helmet', '$boots', '$amulet', '$braclet', '$ring', '$special')");   I hope you understand what you need to do now.
  7. Re: How Can I Secure A Game? I provided him simpliest explanation he will understand, plus, I gave him link so he can read more about it. Your post has no value Dawg, so keep comments like that for yourself. Thank you
  8. Title: Cetwar Site URL: http://www.cetwar.com Site Description: This is version 2 of Cetwar. Nice game, players, alliances (+wars), territory control, bio bombs, ... you rule your profile and upgrade various stuff. Game is for advanced players so I'll understand if you quit after one day or so. :-)
  9. Re: Th3 Str33ts I don't want to be mean but bricks for background? Make them darker ... or change the background.
  10. Re: [REVIEW] Mafia Brotherhood Make new buttons in header or change text-size. And new background would help also. :-)
  11. Re: [V2] Disturbed City You could add some screenshots of the game. :-)
  12. Re: How Can I Secure A Game? Make sure you use mysql_real_escape_string and htmlspecialchars when you can. Please click on the link to see what function do and how it will help you. This will help and protect you from Sql injections.
  13. Re: Staff_items.php This:   $m=$db->query("INSERT INTO items VALUES('',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},$itmbuy, '{$_POST['effect1on']}', '$efx1', '{$_POST['effect2on']}', '$efx2', '{$_POST['effect3on']}', '$efx3', $weapon, $armor, $helmet, $boots, $amulet, $braclet, $ring, $special)");   Replace with this:   $m=$db->query("INSERT INTO items VALUES('',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},'$itmbuy',{$_POST['effect1on']},'$efx1',{$_POST['effect2on']},'$efx2',{$_POST['effect3on']},'$efx3', '$weapon', '$armor', '$helmet', '$boots', '$amulet', '$braclet', '$ring', '$special')");   Could be that ... try it.
×
×
  • Create New...