-
Posts
2,921 -
Joined
-
Last visited
-
Days Won
48
Content Type
Profiles
Forums
Events
Everything posted by KyleMassacre
-
You probably shouldnt rely on includes to validate your data, do it manually for everything.
-
The game is too confusing. I cant even figure out bow to attack people
-
There should be something in header.php that is supposed to not allow users to leave the page while attacking or they lose all xp. Or in attack.php you can hide the menu so they cant access their inventory. Or another option would be if they are in attack mode you can add in itemuse.php something along the the lines of an if statement saying like if ($_SESSION['attack']) { echo "You cant do this"; $h-> endpage(); exit; }
-
Theoretically it should work cause I believe the attack script is only looking for the id but you probably would want to look into that issue to not allow certain parameters to be passed through the url
-
You should be able to just delete that
-
I completely agree. The price is basically for the 15 or so minutes it took to create it and he is offering more of his time to help implement it. Granted 5GBP is a lot for me since my USD means squat these days. Also I dont believe its too hard to swap out the PHP from V1 to V2 I can maybe even help you with that much. If you bought it send me your 2.0.5 header with Dayo's header and I can swap it this weekend if you really wanted it
-
Well this is a tough one. Though i have only been here and been in the business for about a year now but i feel it is a pretty decent rip off of mccodes. But from what i have read there is some banter back and forth about it saying that mccodes ripped off someone elses work but if that was the case how is mccode still selling numerous amounts of engines? On the flip side to that, how is raven still selling there engines. I too have a copy of V1, V2, V2.5, and Raven and clearly Raven is almost exactly like mccodes V2 just with some slight changes. My suggestion is to hold off on going live with the raven script cause i have heard of people having to pull there game because of using it.
-
Exactly what I was trying to say. It gives players an option.
-
Zombie Theme PSD design 80% complete tell me what you think!
KyleMassacre replied to BluroSoft's topic in Art and Content
I actually really like that. -
Tip: Most people that develop for mccode can generally code for all versions. Also it helps if you include some features on what you would like that way you weed out people that cant do what you want
-
Well thanks for the attitude. I was offering a suggestion. I have never come across that in a game I played or owned so that thought never cross my mind but since you put it into perspective it makes a decent idea. Still, I would make take your idea a bit further and charge for the feature a percentage of the list price other wise its just another way to help inflate game currency. So dont take what I said as an insult to your work as I said it was a good idea I was just offering constructive feedback since I may use it but just tweak it out a bit. And plus it offers potential users a canvas to paint with.
-
Pretty good idea. But do you really want people to be safe while they are offline? You may as well disable the button to mug people if they are offline. The way I see it is if they are safe from things from the game while they are offline it doesnt really give them a reason to be online all the time. Maybe do something like lucky said and possibly add an option to go in a another account of some sort but charge them a percentage to do so. Other than that nice contribution.
-
Yes, please a bit more info. Just a few things of the top of my head get rid of ereg since that is now depreciated THIS may help. Also, you use the same queries but with different variables like $result and $fetch. You can just use one master variable that you are going to use through out the entire script if im not mistaken the $fetch variable grabs all the information from the users table where username=$username so stick with that its much easier and cleaner imo
-
With SQL you have to be specific with what you want to do or one of 2 things will happen. 1. You get luck and get an error or 2. You better start that table over. If you tell us what you are trying to delete we can assist you better
-
I think maybe for line 286 that maybe a forum error as for line 180 change to: <a href='factions.php?step=users&ID={$r['faID']}>User list</a>
-
Then nothing meets that argument. What are you actually trying to do? Your SQL you posted is not a valid argument thats why you got an error. Here is what you need to do: 1. Give SQL an action so in this case its DELETE 2. Tell it what table to delete from so FROM users 3. Now tell it what to delete with a where parameter WHERE donated 4. What in the column called "donated" are you looking for? Examples: = or > or < or != Just to name a few.
-
Well the link is there just renamed and in a different spot so myself, not too worried although it did take me like 20min to finally stumble upon it
-
I think this would go really well for a mobile view
-
Look under the whats new tab ;)
-
Try something like this: $s=$db->query("SELECT * FROM `growshop`"); while ($r = $db->fetch_row($s)) { $gri=$r['item_name']; $gsp=$r['item_price']; $gss=$r['stock']; $db->query("UPDATE TABLE `growshop` VALUES('', $gri, $gsp, $gss)"); echo "$gsi has been added to the growshop } I get confused but sometimes adding a ' around a variable throws error I dont remember if I get them with ints or alpha chars and also you were missing a )
-
Like this: DELETE FROM `users` WHERE `donated` > 0 Your not being very specific
-
What errors are you getting or what seems to be the issue?
-
If you wanted bids in open forum I would suggest such sites as freelancer. I dont think it should be mandatory for someone to post their price for a job in public. Plus if you knew a lot about the coders you can trust why not do a private bidding between them? Also you probably wont get it 100% secured like you want cause it would probably take a small team to code it all and test eachothers work. That is just how quality assurance works.
-
I like that idea. I have seen a car racing mod where players can race 1 v. 1 and there was kinda like a grand prix event where a bunch of players can sign up
-
You can maybe try something like this and give me a break since I am on my phone: In seedbank find: <td><center>{$r['sAMOUNT']}</td> Replace with: <td><input type='text' name='amount'>{$r['sAMOUNT']}</input></td> Then you can do something like: $cost=$_POST['amount'] * 1000; Then just do a check for the seed cost amount to make sure they have the money. And if your not too keen on staff files do what I do and just use something like staff items as a template kinda Edit And for the medical card you can do something like $rand = rand(1, 10); $chance = 5; if (!$ir['medical'] && $chance != $rand) { // Do whatever you want here }