Jump to content
MakeWebGames

Vorlen

Members
  • Posts

    287
  • Joined

  • Last visited

    Never

Everything posted by Vorlen

  1. Re: Shafter by LunarPages Kronow had the same thing as you did Cronus, just yesterday. They uber shafted him.   I highly recommend dreamhost, it's great and if you can set up your crons via shell access, you're set to go.
  2. Re: Crime Outcome I'll assume that you fixed the send item bug, so that you cannot send more than you have?
  3. Re: Crime Outcome     If you want to have a slow economy, kill the crystal market and will potions sellability.   My game has no crystal market, and will potions are a stat, so that they cannot be bought or sold, makes it so you never see prices like 5 bill for a will pot. lol
  4. Re: Crime Outcome ((WILL*0.8 )/1.5)+(LEVEL/1) So, we'll do the rate of a newb. LVL 1, 100 Will. so, 100*0.8=80 80/1.5=53.3 53.3+(1/1) =53.3+1 =54.3 Successrate, is 54% of the time for basic stuff. Increase the will bar, and it goes up alot, increase in level, it goes up a bit. So if you want it to be realllllllly hard, make the *0.8 SMALLER and the /1.5 (and the /1) LARGER. This will make things exceptionally difficult (if my math serves me right.) If you make the*0.8 larger, it makes it much easier.   That help at all?
  5. Re: Help with gangs please     PM the code to me? If not, I don't know entirely, probably just a simple error with a column count or something. You have basic gangs? or any additions to it?
  6. Re: Astra you noob   Die in real life On_Fire.   *Cheers for Arson!*
  7. Re: Some Code Confusion???????   PM Me what you have so far, and what it says and such, I can help you fix it. :)
  8. Re: Sick and Tired of Them   Ok, sorry....I found that funny! :-D   You don't know how much I agree. :P
  9. Re: no encryption Yeah, it was posted at a different date on here by myself, and some others have posted it too, here it is.   FIND IN PREFERENCES.PHP   function pass_change() { global $ir,$c,$userid,$h; print "<h3>Password Change</h3><form action='preferences.php?action=passchange2' method='post'>Current Password: <input type='password' name='oldpw' /> New Password: <input type='password' name='newpw' /> Confirm: <input type='password' name='newpw2' /> <input type='submit' value='Change PW' /></form>"; } function do_pass_change() { global $ir,$c,$userid,$h; if($_POST['oldpw'] != $ir['userpass']) { print "The current password you entered was wrong. [url='preferences.php?action=passchange']> Back[/url]"; } else if($_POST['newpw'] !== $_POST['newpw2']) { print "The new passwords you entered did not match! [url='preferences.php?action=passchange']> Back[/url]"; } else { mysql_query("UPDATE users SET userpass='{$_POST['newpw']}' WHERE userid=$userid",$c); print "Password changed!"; } }   REPLACE WITH   function pass_change() { global $ir,$c,$userid,$h; print "<h3>Password Change</h3><form action='preferences.php?action=passchange2' method='post'>Current Password: <input type='password' name='oldpw' /> New Password: <input type='password' name='newpw' /> Confirm: <input type='password' name='newpw2' /> <input type='submit' value='Change PW' /></form>"; } function do_pass_change() { global $ir,$c,$userid,$h; if(md5($_POST['oldpw']) != $ir['userpass']) { print "The current password you entered was wrong. [url='preferences.php?action=passchange']> Back[/url]"; } else if($_POST['newpw'] !== $_POST['newpw2']) { print "The new passwords you entered did not match! [url='preferences.php?action=passchange']> Back[/url]"; } else { mysql_query("UPDATE users SET userpass=md5('{$_POST['newpw']}') WHERE userid=$userid",$c); print "Password changed!"; } }
  10. Re: Sick and Tired of Them If you copyright in one country, is it good for all of them? Like I live in Canada, if I copyright a base code of my own, and then an American citizen steal it, can I sue them?
  11. Re: If user in jail/hosp Thanks, like I said in PM, hope you enjoy it. :)
  12. Re: If user in jail/hosp Let me know if the fix I sent you works :)
  13. Re: If user in jail/hosp That'll make a pretty big difference yes. :P
  14. Re: If user in jail/hosp Send me in PM a copy of your header, I'll fix it up for you :)
  15. Re: If user in jail/hosp Wrote what????? I made it so that it doesn't say   else { if { which the PARSER WILL NOT UNDERSTAND. it'll neglect the last else, and get all confused. I wasn't saying anything about the text, which, if I am correct, you did.
  16. Re: If user in jail/hosp if ($ir['jail'] > 0) { print "<img src=THUGJAIL.jpg />"; } else if ($ir['hospital'] > 0) { print "<img src=THUGHOSP.jpg />"; } else { print "<img src=Banner.gif />"; }   else if is perfectly fine, and the else { if { will get confusing for the parser.
  17. Re: staff applications   What version of PHP does your server have? I only ask because that sort of thing COULD be the problem, doubt it, but it's possible :P
  18. Re: Help with crons please Funny, you just asked to why your crons don't work.... ask your boyfriends :P **This random act of rudeness brought to you by VORLENTRONRUDENESSOMETER*
  19. Re: Black Jack Haha, it logs you out when you finish a round, it unsets the session. Also, if I try and add queries I get told it's not a proper mysql result resource thing, which I tried to fix by adding the global $c,$userid crap but yeah, LMFAO.   Well, I'll muck about with it and see what comes of it. :)
  20. Re: Site Radio Nice, do you have any idea how to set up SHOUTCAST from a dynamic IP? (Even if I go static, I still have to get passed my router LOL) I have a shoutcast thing on my comp set-up and it goes online easily, just doesn't stay on the net, stupid NAK error or whatever it's called LMFAO>
  21. Re: Cron Confusion     Put them together? :)
  22. Re: Seanybob's Arcade Mod From the looks of the screenshots, your games are listed in a "text link" table sort thing right? Well, if that's the case, even if not and it's all done in some fancy way, I can give you a small java script that you introduce at the beginning of the page and it allows you to hide things and show then on click. or onmouseover whatever you set it to. It's a nifty thing, because then it might looks like this   "VIEW ALL GAMES" - - - - "VIEW ALL RPGs" - - - - "VIEW ALL SHOOTERS" - - - - "VIEW ALL OTHERS" the default is showing all games listed below, if they click one of the others, it'll show that list, I will have to add a few restrictors to it so that you can't show multiple lists at once, but it saves you reloading the page for different lists using submits, it just stays on one page. :)
  23. Re: Sick and Tired of Them I agree with you both! UCC there is stuff that can be done, HOWEVER, it's a HUGE cost. But regardless, I have custom mods that I did MYSELF on Kingsandpwns and I wont sell them because I don't want people reselling them. I have a crystal crops mod, I was accused of stealing ideas from Travian, LMFAO, regardless, I think that we need to do something, don't know what yet though. Off topic, but, Arson do you still need that graphic designer? :P
  24. Re: Emergency Broadcast System (Spam Thread) hahaha I suppose so, what about..   why do doctors have so many names, Doctor, Physician etc :P
  25. Re: Counting (nr game) 893: What the heck does quiescent mean??? Word: doorbell
×
×
  • Create New...