Jump to content
MakeWebGames

Snatchy

Members
  • Posts

    120
  • Joined

  • Last visited

    Never

Everything posted by Snatchy

  1. Re: Free Advertising check out my link on www.goldfusionwars.com link is bottom left abouve profile..... for banner swapping or banner advertising... If no banner swap will place banner on there for $20US for 30 days. Cheers Snatchy
  2. Is 20 the highest length that we can get numbers to display? How can we get more than 20 charachters in a number to display in format?
  3. Re: A question to sort out all the arguments over coding copyright..... so no line means that i can alter something ever so slightly and i can claim a copy as mine? Or is there supposed to be a certain percentage of change?
  4. Ok I want to settle all this whining about he copied you and they copied there' sand you can't do this because you havn't got that. OK so here it is.. How much do we have to change/alter a script before we are able to claim it as one of our own? So what bits of code can and can't we use? I see people saying that this script just looks like that one and does the same thing, yes correct but when you think about it is there any other way to code something like this and make it compatible for the game? a table is set out like a table..... in every script, a sql query has to be typed a certain way to work and so on. Well I hopw all this makes some sense, would love to hear all your thoughts on this. But at the end of the day when can we claim a script as our own? Snatchy
  5. Re: Free Loan Shark System lol can someone send it to me pleaaaaaaaaasssssssseeeeeeeeeeeeee??????????????????????!!!!!!!!!!!!
  6. I'm trying to add a steal crystals mod to attak won. can someone please tell me what i am doing wrong here?   else { $stole=(int) (rand($r['money']/500,$r['money']/20)); $stolec=(int)(rand($r['crystals']/100,$r['crystals']/10)); $randnumer= rand(20,30); $hosptime = (int) $randnumer; $loseruser = $r['userid']; $winneruser = $ir['userid']; $winnerusername = $ir['username']; $reasonhosp = 'Attacked by '; $reasonhosp .= ' $reasonhosp .= $winneruser; $reasonhosp .= '>'; $reasonhosp .= $winnerusername; $reasonhosp .= '.'; mysql_query("UPDATE users SET hosptime=$hosptime WHERE userid=$loseruser",$c); mysql_query("UPDATE users SET hospreason='$reasonhosp' WHERE userid=$loseruser",$c);   print "You beat {$r['username']} and stole \$$stole"; $qe=$r['level']*$r['level']*$r['level']; $expgain=rand($qe/4,$qe/2); $expperc=(int) ($expgain/$ir['exp_needed']*100); print " and gained $expperc% EXP!"; mysql_query("UPDATE users SET exp=exp+$expgain,money=money+$stole WHERE userid=$userid",$c); mysql_query("UPDATE users SET crystals=crystals+$stolec WHERE userid=$userid",$c); mysql_query("UPDATE users SET hp=1,money=money-$stole WHERE userid={$r['userid']}",$c); mysql_query("UPDATE users SET crystals=crystals-$stolec WHERE userid={$r['userid']}",$c); event_add($r['userid'],"{$ir['username']} attacked you and stole $stole, and $stolec crystal(s).",$c); //event_add($r['userid'],"{$ir['username']} attacked you and stole $stole.",$c); $atklog=mysql_escape_string($_SESSION['attacklog']); mysql_query("INSERT INTO attacklogs VALUES('',$userid,{$_GET['ID']},'won',unix_timestamp(),$stole,'$atklog');",$c); $_SESSION['attackwon']=0;
  7. Re: TC Rips i put bets on says half the games releasing now won't be around in six months due to the amount of work people don't realise are in them!
  8. Re: Free Loan Shark System ok well i'm not quite up to speed with what i half to replace here. anyone up for givning a quick lesson this?
  9. Re: Free Loan Shark System has anyone come up with a fix for this yet?
  10. Re: blocking I was just testing it and playing around making things work.
  11. function dd_buy() { global $ir,$c,$userid,$h; if($ir['donatordays'] > 0) { print "You need to be a NON - Donator to buy on this market.; Back"; $h->endpage(); exit; would i be right in sayin that this would stop a donator from entering the the crystal market?
  12. Re: WAMP 5 yeah i know how to get the beowser to display the page, i just can't sign in or register a player or anything. i think it's a problem with the database connection, this is what i have.   <? $c=mysql_connect('localhost','root','') or die(mysql_error()); mysql_select_db('nottellingdbname',$c); ?> I'm not sure what ya mean bu $myket, never seen it before.
  13. Just wondering where and what i have to edit to get the game code to run on my computer cause i'm gettin sik of waitin for it to upload to test it.... I just can't get the database to connect.
  14. Re: Developing locally on your own local PHP/MySQL/Apache server what in the php.ini am i supposed to edit?
  15. Re: More Cron Fun..lol phpnet.us is the host I am trying to use. Just trying to find some free server space that'll run php so i can play around with a lite version.... just a sort of testing spot for me
  16. Just wondering if theres another way top get cronjobs to work if you can't set crons like on lunarpages?
  17. [Lite] Bugget streets v1 i'm getting this error when i walk the streets   Warning: Missing argument 4 for userdata() in /home/goldf3/public_html/header.php on line 25 This is the line of code it is referring to in header.php function userdata($ir,$lv,$fm,$cm,$dosessh=1) Any ideas? Cheers!
×
×
  • Create New...