Jump to content
MakeWebGames

Recommended Posts

Posted

Ok, so I'm going all out trying to get my game 100% before i actually bring it up for the public. I dont know who all can do what and how much they'd charge for it so I'm just going to post a few things that I would like to have and if you can do this let me know price, and how soon.

Bare in mind i dont feel like spending a whole lot now as most of the mods I have are fine.

I am looking for a Unique Layout. I have found a few browsing that I like but I dont want to replace all the scripts ..etc from my header, explore, index. as they are vital parts of other scripts I already have installed.

If it comes down to it I may have to but "shrugz"

So I'm looking for Unique Layout "login/register/explore/mainmenu

Bots that show Always on-line that I can program to do random attacks as well as adjust their stats etc. Not sure how I can work this.

I dont know the depths of this, but i'd also like to get a quote on how much it would cost to have a script installed where users can be differant charachter classes.

Get back to me a.s.a.p as I'd like to get this game up and running :-)

New email on my server so not sure if it's working but here it is

[email protected]

If it doesnt

[email protected] will do.

Posted

Re: Looking for a few paid mods

 

I dont know the depths of this' date=' but i'd also like to get a quote on how much it would cost to have a script installed where users can be differant charachter classes[/quote']

Here is a very very simple one.. If you want it more better - players do diff stuff, per char class.. You will have to pay someone.

For Preferences.php.

Case:

<?php //Only for colors!!
case "char" : do_char(); break;

 

Function:

<?php //Only for colors!!
function do_char() {
 global $ir, $db, $h;
 $char_types = array('Normal Member', 'Gangster', 'Mobster');  //=< Add more change What ever!!
 if(isset($_POST['char'])) {
   if(!in_array($_POST['char'], $char_types)) { //=< if not in the array show this
    echo "Invalid command";
    $h->endpage();
    exit;
   }
   echo "You are now ". $_POST['char'] ." class!";
   $db->query("UPDATE `users` SET `char_class` = '". $_POST['char'] ."' WHERE `userid` = ". $ir['userid'] ""); //Db query
 } else {
  echo "<form action="preferences.php?action=char" method="POST" />";
  echo "You are: ". $ir['char_class'] ."
";
  echo "Char type: <select name="char">";
  foreach($char_types AS $char) {
   echo "<option value="". $char ."">". $char ."</option>"; //Drop down the char_types
  }
  echo "</select>
";
  echo "<input type="submit" value="Change Char" /></form>";
 }
}

 

Preferences Link:

<?php //Only for colors!!
echo "[url="preferences.php?action=char"]Change You Char Class[/url]
";

 

Sql:

<?php //Only for colors, i know its a SQL!! LOL
ALTER TABLE `users` ADD `chas_class` VARCHAR(100) NOT NULL DEFAULT 'Normal Member';

 

For index.php.

<?php //Only for colors!!
echo "Char Type: ". $ir['char_class'] ."
";

 

For viewuser.php

<?php //Only for colors!!
echo "Char Type: ". $r['char_class'] ."
";

Done! Note: not tested. (should work), isn't that good...

Posted

Re: Looking for a few paid mods

I've got one vaguely similar to this one but all the charachters are ran through the SQL

I'm more looking for a template to when someone logs on they are asked to choose a charachter/race.

Going for a twilight/underworld mix game with a bit of blade thrown in. Be nice to have 3 diff races. Would make my clan wars rocket :)

 

As for the bots, I seen someone do this on another game and the game itself was pretty simple. So i know the coding isn't "to" hard. I'm just not sure how =p

Be fun to have some NPC vampires or wolves that would do random attacks

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...