-
Posts
863 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Events
Everything posted by Razor42
-
Thanks and yeah there are quite a few features which is why it might take some time to do :)
-
Jut invest some proper time, get a .com domain & then get some screenshots and more information added onto the site.
-
My computer scanner tells me not to go onto the website?
-
I am currently creating a spy mod for V2. This mod will be released as a paid mod but I’m unsure of the price at the moment in time but I will have more of an idea when it’s completed. What this mod does? This mod allows players to hire a spy on another player to find out more information on this player. It is a donator only feature but that can be removed by removing a few lines as I am sure you all know. Features include: • There are 3 different spies to hire from, each cost differently. Spy 1 being the cheapest will only find small amounts of information out and spy3 being the most expensive will find out more information with greater detail. • Each spy takes a certain amount of time to gather there reports. Spy1 being the longest, spy3 being the quickest. • Reports are saved in your report logs so that you can read them at any time you wish or if your logs are becoming full then you can delete logs that are in there. • The resul5ts you gather from spies will be random and will also sometimes not show their exact stat instead may just show a range (for example if his strength is 100 it might show Strength: 50-150 or 50-300). Spy 1 will most often show ranges where are spy 3 will get more exact results. What’s done so far? So far I am around 25% way through the script. I am guessing it might take another week to complete maybe depending on how much time I actually get spare and how much I decide to expand on the current ideas and features. Let me know what you think, if you’d be interested and also if you have any ideas. Regards, Razor42
-
I'm just working on a mod at the moment but when this is done ill have a go :)
-
So if someone's been jailed they can submit a ticket and the staff get it? Is that what you mean? Instead of them havin to directly email staff?
-
So the user doesn't have the register they just have to click the link and visit? Don't you think this could be abused?
-
Looks nice so far Ian ill be buying a copy when it's released!
-
Aslong as the special offer lasts I believe
-
I have had the same experience with crazy domains too and I will be using them for all my domain purchases from now on.
-
Proof of valid V2 script? Ill buy it
-
Crazy imagine is where I bought votelistedgames.com and .co.uk for £3
-
1) Ah right, okay. 2) I'll look at this when I get home 7) Okay 8) Okay
-
1) how come I don't need session start? As stated before $_SESSION is pretty new to me. 2) As stated once again I was going to remove that when I got on a computer which I haven't yet. 3) Herdoc ? What's that? 4) These have been fixed on my live version just not had chance to update the posted code yet. 5) Just a habit I have obtained. Will sort this. 6) $guess = $_GET['Guess']; was my original way of doing it but it no longer needs that so ill clean the code up when I get time. 7) Would be nice of you showed the exploits and how they can be fixed. 8) Format is horrible how? Just a few questions to your post to help me learn more from your feedback :)
-
I always finish one task before I start another, that's just the way I like to work.
-
Yeah I found them very useful when using his and their quite simple.
-
Yeah I used it to help me towards creating this, all thought there quite different there also similar. Learned alot about $_SESSION from yours to Help me create this as I'd never really used it before.
-
Just had it in their for when I was testing. Will remove when I get on computer
-
Not really looking to do something that is already created but if your business mod idea is different to what is there then be more detailed with what you want please
-
Hi there, Decided to do some coding for the community. It’s the first thing I have coded in quite a while so it’s pretty simple and if there are any issues then please let me know but their shouldn't be as I have tested and it all seems to work fine. What it does? It’s a simple hi low game, you get a number and then decided if the next number you’ll get is higher or lower. If you guess wrong then you lose and your pot is empty, if you guess correct then your right and you get $1000 added to your pot. You can also decide to collect your pot at any time. <?php session_start(); include_once 'globals.php'; print "<h2>Hi and Low</h2>"; switch($_GET['action']) { case "play": play(); break; case "collect": collect(); break; case "hi": hi(); break; case "low": low(); break; default: index(); break; } function index() { print "Welcome to Hi and low, The game is simple, You get a number<br /> and you have to guess weather or not you will recieve a number which is <br /> higher or lower. Guess wrong and you loose! Would you like to play? <br /> <form action='hilow.php?action=play' method='post'> <input type='submit' name='Play' value='Play' /></form>"; } function play() { $start_n= mt_rand(1,15); $new_n= mt_rand(1,15); $_SESSION['s_number'] = mt_rand(1,15); print "Your number is ".number_format($_SESSION['s_number'])." and your winnings are ".money_formatter($_SESSION['winnings']).". What would you like to do?<br />"; print '<form action = "hilow.php?action=hi" method = "post"> <input type = "submit" value = "hi" /></form> <form action ="hilow.php?action=low" method="post"> <input type = "submit" value = "low" /></form> <form action ="hilow.php?action=collect" method="post""> <input type = "submit" value = "collect"/></form>'; } function collect() { global $db,$h,$userid; if ($_SESSION['winnings'] == 0) { print "You have no winnings to collect <form action ='hilow.php' method='post'> <input type = 'submit' value = 'Play Again'/></form>"; $h->endpage(); exit; } $collect = $_SESSION['winnings']; $db->query("UPDATE users SET money=money+{$collect} WHERE userid=$userid"); print "Congrats you won ".money_formatter($_SESSION['winnings'])."<br /> <form action ='hilow.php' method='post'> <input type = 'submit' value = 'Play Again'/></form>"; $_SESSION['winnings'] = $_SESSION['winnings'] = 0; } function hi() { $old = $_SESSION['s_number']; $new = mt_rand(1,15); if ($new <= $old) { print "you were incorrect! Your new number was {$new} <form action ='hilow.php' method='post'> <input type = 'submit' value = 'Play Again'/></form>"; $_SESSION['winning'] = $_SESSION['winnings'] = 0; $h->endpage(); exit; } else { $_SESSION['winnings'] = $_SESSION['winnings'] + 1000; print "You were correct.Your new number was {$new} and your winnings are now ".money_formatter($_SESSION['winnings'])." <br /> <form action ='hilow.php' method='post'> <input type = 'submit' value = 'Play Again'/></form> <form action ='hilow.php?action=collect' method='post'> <input type = 'submit' value = 'collect'/></form>"; } } function low() { $old = $_SESSION['s_number']; $new = mt_rand(1,15); if($new >= $old) { print "you were incorrect! Your new number was {$new} <form action ='hilow.php' method='post'> <input type = 'submit' value = 'Play Again'/></form>"; $_SESSION['winning'] = $_SESSION['winnings'] = 0; $h->endpage(); exit; } else { $_SESSION['winnings'] = $_SESSION['winnings'] + 1000; print "You were correct. Your new number was {$new} and your winnings are now ".money_formatter($_SESSION['winnings'])." <br /> <form action ='hilow.php' method='post'> <input type = 'submit' value = 'Play Again'/></form> <form action ='hilow.php?action=collect' method='post'> <input type = 'submit' value = 'collect'/></form>"; } } $h->endpage(); ?> Please post any bugs and I hope you all enjoy :).
-
Hi there, http://razorwebdesings.post2host.co.uk/ is a company site which Peter did me a while back now and I am yet to make use of it due to things that have happened and changed, although I could still use it I am thinking of selling it and looking for offers to see if I should sell it. It comes with html file, css file and all images. Feel free to make a bid if I get a good price I will sell.
-
Sim has already done this with orpgcreator
-
Also if he's asking for a stupid price it could be a very long time before you actually receive your money back but depending on what he wants I may buy it. I have some ideas for it
-
It’s clean and simple but this design in my eyes would suit a game engine rather than an actual game.
-
Yeah, they don’t have to exactly be things that you want to have but they can just be things you think are a good idea as I’m all out of ideas!