Jump to content
MakeWebGames

rowbvp

Members
  • Posts

    47
  • Joined

  • Last visited

rowbvp's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Then where do i edit a user password?
  2. ok thanks ill try that!
  3. hey can anyone help me out, just post a (forgot password.php) after the hosting move seems I lost a few files. ;(
  4. I wanted to let you guys know about a way to gain more members and free advertisement.I am a game owner my self and just want to share what im doing.There is a new gaming network called fantaz in which members play games and earn cash prizes.So far they have like 50 flash based games and are looking to add more.Any game as long as your game is error free.This is a big network Guys like bigpoint.You don't have to pay anything if you use this link,This my invite to you,I also have acess to the beta login.Ill send you the password and ID so you can check out the site. So far they have over 50k members and adding your game to the network will only get you more members plus any earning you gain by being apart of fantaz. Free to google it,research and pretty sure you will want to give it a try.If you don't want to have your game added then you can earn some extra money by adding a banner to your site. If you have any question email me at [email protected] ill also provide you my home number# No this is not a scam: YOU PAY NOTHING No this is not a Ref link: This is a invite,So you guys can get in without the $100 reg fees If you want your game added to network can email me and ill contact the owner for you. yes you can sign up without the link i made but you will have to pay reg fees. No you don't lose your game,rights. Space is limited,so get in now before site opens and game reg is over. JOIN NOW: :thumbsup: http://hosting14.com/fantaz.php
  5. Yeah, just found out my host disabled them,I guess we over loaded. looking around the forum can't seem to find any timestamps that work or how to remove crons altogether, any help guys or links
  6. in error mail im getting this mesg: execl: couldn't exec `/bin/sh' execl: Permission denied any ideas
  7. Don't know if anyone has ever post this so here it is.Called CPA lead,kinda like voting but users will need to fill out a 1-2 min surveys.You get about $1.00 to $25 per surveys, or sign ups.I have got paid from them so they are real.This may be a good idea for users to gain crystals, gold,points and earn you some money as well.Just make account for free create links and place code on any page you want. http://www.cpalead.com/
  8. Well the site is a little buggy ,my main goal is not hosting but what i can offer will out weight any other host.Here the main problem with buying from bigger host in my opinion.bigger host have bigger clients,some host like gater or godaddy have extremely large company's that they host,also some host host million of sites. Trust me i know,i have paid for hosting on many sites and there speeds and up time are no better then the little guys im saying for $4.99 ill hook you guys up.
  9. Are there any errors in this itemuse.php ,for some reason the item effects are not working.The item Sql are updating in db,so i think the problem maybe in this code.aslo im using the inventory.php and staff_items php which contain rings,legs...What i'm trying to do is add a item that has 30% exp gain   <?php include "globals.php"; $_GET['ID'] = abs((int) $_GET['ID']); //Food if(!$_GET['ID']) { print "Invalid use of file"; } else { $i=$db->query("SELECT iv.*,i.*,it.* FROM inventory iv LEFT JOIN items i ON iv.inv_itemid=i.itmid LEFT JOIN itemtypes it ON i.itmtype=it.itmtypeid WHERE iv.inv_id={$_GET['ID']} AND iv.inv_userid=$userid"); if(mysql_num_rows($i) == 0) { print "Invalid item ID"; } else { $r=$db->fetch_row($i); if($r['itmtypeid'] == 3) { if ($ir['hunger'] <= 80) { $db->query("UPDATE `users` SET `hunger` = `hunger` + 20 WHERE `userid` = $userid"); } else { echo 'You cannot use this item at this time.'; $h->endpage(); exit; } } if(!$r['effect1_on'] && !$r['effect2_on'] && !$r['effect3_on']) { die("Sorry, this item cannot be used as it has no effect."); } if($r['effect1_on']) { if($r['itmid']==60) { mysql_query(sprintf("UPDATE `users` SET `bgtime` = 15 WHERE `userid` = ('%u')", abs(@intval($userid)))) or die(mysql_error()); } elseif($r['itmid']==610) { mysql_query(sprintf("UPDATE `users` SET `bgtime` = 30 WHERE `userid` = ('%u')", abs(@intval($userid)))) or die(mysql_error()); } elseif($r['itmid']==620) { mysql_query(sprintf("UPDATE `users` SET `bgtime` = 60 WHERE `userid` = ('%u')", abs(@intval($userid)))) or die(mysql_error()); } $einfo=unserialize($r['effect1']); if($einfo['inc_type']=="percent") { if(in_array($einfo['stat'],array('energy','will','brave','hp'))) { $inc=round($ir['max'.$einfo['stat']]/100*$einfo['inc_amount']); } else { $inc=round($ir[$einfo['stat']]/100*$einfo['inc_amount']); } } else { $inc=$einfo['inc_amount']; } if($einfo['dir']=="pos") { if(in_array($einfo['stat'],array('energy','will','brave','hp'))) { $ir[$einfo['stat']]=min($ir[$einfo['stat']]+$inc, $ir['max'.$einfo['stat']]); } else { $ir[$einfo['stat']]+=$inc; } } else { $ir[$einfo['stat']]=max($ir[$einfo['stat']]-$inc, 0); } $upd=$ir[$einfo['stat']]; if(in_array($einfo['stat'], array('strength', 'agility', 'guard', 'labour', 'IQ'))) { $db->query("UPDATE `userstats` SET {$einfo['stat']} = '{$upd}' WHERE userid={$userid}"); } else { $db->query("UPDATE `users` SET {$einfo['stat']} = '{$upd}' WHERE userid={$userid}"); } } if($r['effect2_on']) { $einfo=unserialize($r['effect2']); if($einfo['inc_type']=="percent") { if(in_array($einfo['stat'],array('energy','will','brave','hp'))) { $inc=round($ir['max'.$einfo['stat']]/100*$einfo['inc_amount']); } else { $inc=round($ir[$einfo['stat']]/100*$einfo['inc_amount']); } } else { $inc=$einfo['inc_amount']; } if($einfo['dir']=="pos") { if(in_array($einfo['stat'],array('energy','will','brave','hp'))) { $ir[$einfo['stat']]=min($ir[$einfo['stat']]+$inc, $ir['max'.$einfo['stat']]); } else { $ir[$einfo['stat']]+=$inc; } } else { $ir[$einfo['stat']]=max($ir[$einfo['stat']]-$inc, 0); } $upd=$ir[$einfo['stat']]; if(in_array($einfo['stat'], array('strength', 'agility', 'guard', 'labour', 'IQ'))) { $db->query("UPDATE `userstats` SET {$einfo['stat']} = '{$upd}' WHERE userid={$userid}"); } else { $db->query("UPDATE `users` SET {$einfo['stat']} = '{$upd}' WHERE userid={$userid}"); } } if($r['effect3_on']) { $einfo=unserialize($r['effect3']); if($einfo['inc_type']=="percent") { if(in_array($einfo['stat'],array('energy','will','brave','hp'))) { $inc=round($ir['max'.$einfo['stat']]/100*$einfo['inc_amount']); } else { $inc=round($ir[$einfo['stat']]/100*$einfo['inc_amount']); } } else { $inc=$einfo['inc_amount']; } if($einfo['dir']=="pos") { if(in_array($einfo['stat'],array('energy','will','brave','hp'))) { $ir[$einfo['stat']]=min($ir[$einfo['stat']]+$inc, $ir['max'.$einfo['stat']]); } else { $ir[$einfo['stat']]+=$inc; } } else { $ir[$einfo['stat']]=max($ir[$einfo['stat']]-$inc, 0); } $upd=$ir[$einfo['stat']]; if(in_array($einfo['stat'], array('strength', 'agility', 'guard', 'labour', 'IQ'))) { $db->query("UPDATE `userstats` SET {$einfo['stat']} = '{$upd}' WHERE userid={$userid}"); } else { $db->query("UPDATE `users` SET {$einfo['stat']} = '{$upd}' WHERE userid={$userid}"); } } print "{$r['itmname']} used successfully!"; item_remove($userid, $r['inv_itemid'], 1); } } $h->endpage(); ?>
  10. Nice Mod +1
  11. SQL error MySQL said:   #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '----------------------------------------   CREATE TABLE `questgroups` ( `qgID' at line 21
  12. Thanks curt that works line 66 was the error
  13. QUERY ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''84', Array'property']},'','','','','','','')' at line 1 Query was INSERT INTO home_users VALUES '84', Array'property']},'','','','','','','')
  14. anyone get this working? Still can't get user to buy bomb ans use it
  15. thanks This is distorted Im at my brothers house so thats why the name is different. Thanks alot for the reveiw it helps alot. Im having a few problems with the layout getting it to work in different res at the moment if you change res to 1024x768 everything will line up as it should. now when you said you had 8 links in the first min was that from using the flash menu. when I use it here at my b rother or back at my house it works 100%. But thats a quick fix I hope lol Im 27 years old and Im from usa Delaware :thumbsup: Thanks for your review it helps alot as things that work 100% for me may not for others any thing else you find let me no bro
×
×
  • Create New...