
Dominion
Members-
Posts
2,447 -
Joined
-
Last visited
-
Days Won
9
Content Type
Profiles
Forums
Events
Everything posted by Dominion
-
Well you may want to clear a few points up - “help build the content “ for example? Would the manger be able to to do all this via the site or would it involve programming? Mafia sums itself up, however “Fantasy “ could be nearly anything so you may want to give more general info on that if not a full story line (could also be useful to explain the mafias story line). payment you may wish to clear up also e.g. would we be signing a legal contract or is it just an informal deal that in theory would be rather easy for either to go back on. How much access would we have to your engine? what makes your site unique enough to pull a large community to it. How much in game control would we have if someone just went to you as they are unhappy about something would you just overrule it or are you just a sleeping boss/partner (so the community does not know about you). is there anything you're not willing to do e.g. pay us a % of total game revenue.
-
AGL,Gangster-Legends,Gang-Bliss and Gang-City
Dominion replied to LimitedStreak's topic in Game Support
Gangster legends is in the script vault. http://makewebgames.io/index.php?page=DownloadDBData&dataID=4 I have no idea what the other three are. -
The login looks fine, but the inside just looks horrible. The idea of how your shows the energy etc is not actually a bad one, however the menu makes the whole thing look like it's not been thought though. Think about actually coding it up, and allowing the main menu to be interactive, so when you click the circles the three options pop out. Easily done, and should reduce how ugly it is at the moment. Also consider changing the background to something a little easier on the eyes as dark backgrounds do mean people stop playing the game as it gets later. The blood effect around the “login” and “register” circles looks completely random, and flows with nothing. Just my opinions. Edit – on second look it's not blood, however I still feel it does not flow well.
-
Helpful would be explaining what could be done better...
-
So you're actually creating the mod? Moved to MCCodes mods in production.
-
Top of globals.php right under <?php add "die;" :P
-
There are also free versions around. I assume it's something he wants done specific for his site different to what they offer...
-
100% agree if the input is constructive, and not pointless... Anyway I was only checking posts for the day lol merry Christmas talk to you all tomorrow. :)
-
There are gang markets around mwg already...
-
So is bumping a post from 2007 saying “Nice mod helped me lots” I think the issue here is people are asking what the point of spam is. You're never going to be able to allow one without the other, pointless post will always have the odd person ask what the point was.
-
if we pick not to tell them what will stop them from posting 10 extra times? Well it's true putting a rule in place would not be practical asking them nicely there is no issue with in my eyes...
-
Actually no it's not difficult at all to secure php pages. Learning php, assuming you learn right, will allow you to create secure sites anyway. If you're looking to secure mccodes it's not to difficult either assuming you're willing to put the time in. I do admit you're not going to learn in a day, but then again if you never learn you will always have to pay to get your site fixed up. In the long run it's much better for you, and people on here are usually willing to help with an error from time to time.
-
Actually I don't mind old posts being bumped up for questions on errors etc as it's then fixed for everyone, however bumping an old post to say “Thanks for the mod” or even posting saying just “this does not work for me” does annoy me a lot. New to makewebgames or not I believe everyone knows that if it's old there is no need to bump it, as is the rule on any forums site I go on. I have a similar view about posting “This does not work can anyone fix it.” I would assume us needing to know what's wrong, and see the part of the code that is giving the error is common sense. It's more about why the posts are being bumped up then it is the fact they are being bumped. Would you like active members who try to contribute, and posts that will help new members in the future or pointless ones?
-
Well you should probably work out a min/max budget for the game before hiring anyone. A plan always helps rather then just “like that one” copying rarely gets your game popular, or at least not in what I have seen.
-
[mysql] alter table items add `armor` int(11) NOT NULL default '0'; [/mysql] If adding the armor back into the table does not work post the insert query that errors.
-
I like the idea, however to make it work on an active game you would need to change viewuser, and halloffame (the money part) so only the people with higher iq’s can see the amounts. :)
-
I rarely go on msn it's better to just pm me on here.
-
Into phpmyadmin on the "sql" tab? I assume you're asking where to put the query that adds armour anyway.
-
Well open an echo/print or remove where it’s closed before hand...
-
You’re still bumping an old post where you really have no need. Please avoiding bumping older posts.
-
The default would be more so if people try, and play with it they just get an error.
-
switch($_GET['cmd']){ case 'Buy': cmd_buy(); break; case 'Sell': cmd_sell(); break; default: cmd_index(); break; } the $_GET['cmd'] is just the $_GET's name... Really staff_stocks.php's Switch should have a default...