-
Posts
572 -
Joined
-
Last visited
-
Days Won
7
Content Type
Profiles
Forums
Events
Everything posted by NonStopCoding
-
upload the code for header.php and estate.php
-
lol just noticed this topic is a year old removed comment haha :(
-
why whack people with dildos on a text based game go on gta sa lol
-
message removed
-
welcome to makewebgames nice little skill set you have there
-
it looks much better than before well done
-
the move can take up to 5 working days if i remember correctly and even at that one of the owners will need to issue it i think contact coldblooded
-
oh right sorry heads been all over the place last few days :p yea that's a not bad of a idea. i am in the process of updating the info again as forgot the main part of the mod the cars as someone pointed out it would only be a walk by so i went and added it in and will be updating the info later today with new changes
-
You have lost me can you explain a little?
-
cool if you have any questions or whatever then post away :) live demo can be viewed at http://grpg.nonstopcoding.com Username: Demo Password: demo123
-
Purchase here Drive By Shooting[$15] With this module your players will be able to preform drive by's on other players or a random gang member. Files planning.php (This file handles the player vs player drive by's) gang_driveby.php (This file handles the the drive by on random gang members) profile.php (Added in security and link to preform a drive by on a user) viewgang.php (Added in security and a link to preform a drive by on a gang member) Other Info Costs the attacker 25% of there energy to preform a drive by Cant do a drive by if target is in jail or hospital Cant do a drive by if targets health is below 25% Cant do a drive by if attacker doesn't have a required Weapon/Armor On Cant do a drive by if attacker doesn't have a car Cant do a drive by if attacker is in jail or hospital Drive by's are based on speed to be able to do a drive by you need to have better speed than your target. If you don't have better speed than your target you will miss and it will select someone at random to hit so you might get hit back. If your speed is the same as your target then you both hit each other and die Hospital time is 60 seconds times the attackers level if user draws time is 60 seconds x attackers level x targets level Updates to come -> Bullets will be required to do a drive by -> Option to hit back your target in event (idea from AnonymousUser) -> Hire someone to do a drive by for you Will post some screenshots soon
-
if($_SERVER['HTTP_REFERER'] != 'http://www.criminal-city.co.uk/Login/' && $_SERVER['HTTP_REFERER'] != 'http://www.criminal-city.co.uk/Login/') this line is not pointing to home.php should look like this if($_SERVER['HTTP_REFERER'] != 'http://www.criminal-city.co.uk/Login/home.php' && $_SERVER['HTTP_REFERER'] != 'http://www.criminal-city.co.uk/Login/home.php')
-
hello mags if you have skype add me dundeeboy09
-
Grpg and mabyee mccodes i don't have any experience with nwe
-
i am in process of creating a new module Called Pass Da Bomb owner starts event and then it selects all the players online and picks one at random and gives them the bomb which they will need to pass to another player whoever it explodes on is out another bomb is spawned until one final person is left which will be winner other than that nothing new in development
-
Google is your friend use it :P
-
due we still reort people for invallid mccodes lisence
NonStopCoding replied to Raven1992's topic in General
yes mccodes has been dying for a while now i don't see them doing a v3 either -
nice i quite like that well done
-
just glad you like it :)
-
i never said it was fully secured there is no such thing is fully secure all i said was if he purchased v2.05b rather than using a older version of v2 then it should not need secured i dunno if mccodes has secured all there script the op mentioned basic mccodes so i assumed he was going to be using a older version of v2
-
if you purchased a proper license it should not need secured download the v2.05b
-
I have not released anything free for a while so coded up this super simple lucky dip i noticed grpg doesn't have it and cant see it been released for free yet so here it is. SQL ALTER TABLE `grpgusers` ADD `lucky` int(2) NOT NULL default 1 open up classes.php and add this to the users class $this->lucky = $worked['lucky']; lucky.php <?php /* Module Name: Lucky Dip * Module Version: v1.00 * Module Price: $0.00 * Module Support: [email protected] */ include(__DIR__.'/header.php'); if(isset($_POST['tryluck'])) { if($user_class->money < 10000) echo Message('You don\'t have enough money to buy a lucky dip.'); else if($user_class->lucky == 0) echo Message('You have already done your lucky dip today.'); $money = mt_rand(0,20000); $points = mt_rand(0,5); $special = mt_rand(1,350); $newm = $user_class->money + $money; $newp = $user_class->points + $points; if($user_class->money >= 10000 && $user_class->lucky > 0) { if($special == 10) { $money = mt_rand(0,20000); $points = mt_rand(0,5); $money = $money * 2; $points = $points * 2; $newm = $user_class->money + $money; $newp = $user_class->points + $points; mysql_query("UPDATE `grpgusers` SET `money` = `money` - 10000 WHERE `id` = '$user_class->id'"); echo Message('Woa your really lucky today and doubled your gain.<br /> You gained '.$points.' points and $'.number_format($money).''); mysql_query("UPDATE `grpgusers` SET `money` = '$newm',`points` = '$newp',`lucky` = 0 WHERE `id` = '$user_class->id'"); } else { echo Message('You gained '.$points.' points and $'.number_format($money)); mysql_query("UPDATE `grpgusers` SET `money` = '$newm',`points` = '$newp',`lucky` = 0 WHERE `id` = '$user_class->id'"); mysql_query("UPDATE `grpgusers` SET `money` = `money` - '10000' WHERE `id` = '$user_class->id'"); } } } ?> <tr><td class="contenthead">Lucky Dip</td></tr> <tr><td class="contentcontent"> <i>So are you feeling lucky?? well for $10.000 you can take a shot at the luck dip.</i><br /> <i>You can win up to x2 the ticket prize and if your super lucky you can double that but only if your really lucky.</i><br /> </td></tr> <tr><td class="contentcontent"> <form method="post"> <input type="submit" name="tryluck" value="Try My Luck" /> </form> </td></tr>