Jump to content
MakeWebGames

AlabamaHit

Members
  • Posts

    1,308
  • Joined

  • Last visited

Everything posted by AlabamaHit

  1. Re: Primary and Secondary Weapon oh sorry, i yeah mis read that...... Opps lol
  2. Re: [Other] Disable Register(not technicaly disabled) all i did was renamed my register.php to 083lso9.php lol :-o But nice work. And tahnks for sharing.
  3. Re: [REVIEW] Illegal-Intent - please review Background looks odd to me... Shoutbox.....I know its just me...I Hate Shoutboxes....can not stand them... Captcha on Register is back....and is stupid and dumb..You plan on a robot signing up? It took me 4 tries to get it to work you should take it off.... add some design....to me looks like stuff is just floating in the page... On good note... I do like its a little unique...Very good potential with some work... So, i give 5/10 Keep up good work. :wink:
  4. Re: SQL Injection   [url]http://criminalexistence.com/ceforums/index.php?action=search2[/url]   There... Guess what i did...i used the search feature on this site.. I searched for   SQL Injection   Its that simple..People has to start helping theirselfs if they want people to help them...
  5. Re: Primary and Secondary Weapon Simplest thing... Make it where if the other person can not be attacked without a weapon. I had a problem like this before. I went a Completely differetn route...Not saying it on here lol to much to do to explain and get working on 50 games, lol...so just do something like this..   if($odata['equip_primary'] == 0 && $odata['equip_secondary'] == 0) { die ("Sorry you can not attack. This users has no weapon."); }   Now thats really an example code is not tested. not sure if thats what tis called in your data base....but you might have to tweak it a little but thats basically what you want there.
  6. Re: Crons VS. Time Stamp Yeah, I'm running test on it. And i see what you mean Floydian by it not giving health back without them being online. I didn't think about that yet. lol, See that why i started this post lol... This post is just to get some gerneral ideas. I'm not really plaining on using this on my mccode game. I plan on useing this in another project I have. Please keep the ideas and thoughts coming :) And thanks Nyna and Hanif
  7. Re: Gym Help Please   his function was range_to_percent... Make sure you didnt type it wrong...Typo is alot of my errors lol... look for functionrange to_percent or function range to_percent I would say the last more is a good possiblilty...
  8. I'm starting this cause I'm curious on everyones opionon on this. The topic is... Crons vs Time Stamp ==================== What do you think is fastest? For a website that is?... Please explain your reason behind answer also... What it is basically do you think that using crons would be faster than blacking a user with a Time Stamp......   Also please post your comments on if you think Time Stamp Won't work. ==================== My Answer.. I would say that Time Stamp is faster.. 1. There are not alot of queries running on a page. That has to run every min. 2. It would stop queries from running when there is no users online...Like only updateing users online. 3. umm....stopping alot of usless queries... 4. Less queries running has to mean a faster site? Right? ------------------------- My Cons...... 1. Code would be a little harder...   Well thats the only bad thing i can see... Please post your thoughts.
  9. Re: Alot of help needed I bet that EVERY bug in MCcodes is on here. and is FIXED...if you just look...
  10. Re: Auto Fed Url links in mail ............are you serouis....dont fed them just block url in mail.. ANd Why dont you learn to do some coding, 80% of the topices started now are by you asking someone to make you something. Get some moeny or learn to code.. Please dont take that the wrong way its just poeple here like tohelp..but they are not goin g to make your game for you and thats what youare asking..cuase everday you are asking for 10 new things,
  11. Re: Alot of help needed use the search everything you asked in is this forums you just have to find it.
  12. Re: mccodes v2 jail cron did you set it up in your cPanel? You have to set up the cron in the cron tab..... This is a start....dont take it as me saying your dumb like some would take that....not saying taht.....To trouble shoot got to start somewhere :mrgreen: :mrgreen:
  13. Re: wamp server what do you mean? wamp...is a server on your computer aint it... If i remeber right, lol... Humm...if it setsup phpmyadmin your good. if not you will need that aslo... Find out what folder(s) wamp users. That is where you will ahve to upload your files to. Then go to phpmyadmin. to your cpanel....make the database... Now go back to your files...and run the installer. and from there should be the same as your online host... I have heard that there are some troubles with Vista...But just the admin thingy in it... If thats your trouble. Just right click on wamp...click properties i think....then Compability tab....check the box Run as Administator... That should solve that problem...if you have more question pleasea ask. I am not to familar with it..but i run LAMP with is about the same i would think.
  14. Re: URGENT HELP!! Setup Game nvm
  15. Re: Weird Problem oh, cool
  16. Re: Weird Problem he took out 2 $h->endpage(); i had in there.. guess i put in tomany, lol Thanks man :) i was about to give up on it
  17. Re: [v1]Request For Failing Crime Results to jail didn't mean that....Its just usually the small things that are the errors...
  18. Re: Weird Problem   <?php /*----------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if($ir['donatordays'] == 0) { die("This feature is for donators only."); } print " <h3>Friends List</h3>"; switch($_GET['action']) { case "add": add_friend(); break; case "remove": remove_friend(); break; case "ccomment": change_comment(); break; default: friends_list(); break; } function friends_list() { global $ir,$c,$userid,$h; print " [url='friendslist.php?action=add']> Add a Friend[/url] These are the people on your friends list."; $q_y=mysql_query("SELECT * FROM friendslist WHERE fl_ADDED=$userid",$c); print mysql_num_rows($q_y)." people have added you to their list. Most liked: ["; $q2r=mysql_query("SELECT u.username,count( * ) as cnt,fl.fl_ADDED FROM friendslist fl LEFT JOIN users u on fl.fl_ADDED=u.userid GROUP BY fl.fl_ADDED ORDER BY cnt DESC LIMIT 5",$c) or die(mysql_error()); $r=0; while($r2r=mysql_fetch_array($q2r)) { $r++; if($r > 1) { print " | "; } print "[url='viewuser.php?u={$r2r[']{$r2r['username']}[/url]"; } print "] <table width=90%><tr style='background:gray'> <th>ID</th> <th>Name</th> <th>Mail</th> <th>Send Cash</th> <th>Remove</th> <th>Comment</th> <th>Change Comment</th> <th>Online?</th></tr>"; $q=mysql_query("SELECT fl.*,u.* FROM friendslist fl LEFT JOIN users u ON fl.fl_ADDED=u.userid WHERE fl.fl_ADDER=$userid ORDER BY u.username ASC",$c); while($r=mysql_fetch_array($q)) { if($r['laston'] >= time()-15*60) { $on="<font color=green>[b]Online[/b]</font>"; } else { $on="<font color=red>[b]Offline[/b]</font>"; } $d=""; if($r['donatordays']) { $r['username'] = "<font color=red>{$r['username']}</font>";$d="[img=donator.gif]"; } if(!$r['fl_COMMENT']) { $r['fl_COMMENT']="N/A"; } print "<tr> <td>{$r['userid']}</td> <td>[url='viewuser.php?u={$r[']{$r['username']}[/url] $d</td> <td>[url='mailbox.php?action=compose&ID={$r[']Mail[/url]</td> <td>[url='sendcash.php?ID={$r[']Send Cash[/url]</td> <td>[url='friendslist.php?action=remove&f={$r[']Remove[/url]</td> <td>{$r['fl_COMMENT']}</td> <td>[url='friendslist.php?action=ccomment&f={$r[']Change[/url]</td> <td>$on</td></tr></table>"; } $h->endpage(); exit; } function add_friend() { global $ir,$c,$userid,$h; $_POST['ID'] = abs((int) $_POST['ID']); $_POST['comment']=str_replace(array("<",">","\n"),array("<",">"," "), $_POST['comment']); if($_POST['ID']) { $qc=mysql_query("SELECT * FROM friendslist WHERE fl_ADDER=$userid AND fl_ADDED={$_POST['ID']}",$c); $q=mysql_query("SELECT * FROM users WHERE userid={$_POST['ID']}",$c); if(mysql_num_rows($qc)) { print "You cannot add the same person twice."; $h->endpage(); exit; } if($userid==$_POST['ID']) { print "You cannot be so lonely that you have to try and add yourself."; $h->endpage(); exit; } if(mysql_num_rows($q)==0) { print "Oh no, you're trying to add a ghost."; $h->endpage(); exit; } mysql_query("INSERT INTO friendslist VALUES('', $userid, {$_POST['ID']}, '{$_POST['comment']}')",$c) or die(mysql_error()); $r=mysql_fetch_array($q); print "{$r['username']} was added to your friends list. [url='friendslist.php']> Back[/url]"; $h->endpage(); exit; } else { print "Adding a friend!<form action='friendslist.php?action=add' method='post'> Friend's ID: <input type='text' name='ID' value='{$_GET['ID']}' /> Comment (optional): <textarea name='comment' rows='7' cols='40'></textarea> <input type='submit' value='Add Friend' /></form>"; } $h->endpage(); exit; } function remove_friend() { global $ir,$c,$userid,$h; mysql_query("DELETE FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",$c); print "Friends list entry removed! [url='friendslist.php']> Back[/url]"; $h->endpage(); exit; } function change_comment() { global $ir,$c,$userid,$h; $_POST['f'] = abs((int) $_POST['f']); $_POST['comment']=str_replace(array("<",">","\n"),array("<",">"," "), $_POST['comment']); if($_POST['comment']) { mysql_query("UPDATE friendslist SET fl_COMMENT='{$_POST['comment']}' WHERE fl_ID={$_POST['f']} AND fl_ADDER=$userid",$c); print "Comment for friend changed! [url='friendslist.php']> Back[/url]"; $h->endpage(); exit; } else { $_GET['f'] = abs((int) $_GET['f']); $q=mysql_query("SELECT * FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",$c); if(mysql_num_rows($q)) { $r=mysql_fetch_array($q); $comment=str_replace(array("<",">"," "), array("<",">","\n"), $r['fl_COMMENT']); print "Changing a comment.<form action='friendslist.php?action=ccomment' method='post'> <input type='hidden' name='f' value='{$_GET['f']}' /> Comment: <textarea rows='7' cols='40' name='comment'>$comment</textarea> <input type='submit' value='Change Comment' /></form>"; $h->endpage(); exit; } else { print "Stop trying to edit comments that aren't yours."; } } $h->endpage(); } ?>   and that, lol... I changed the last one to this to..
  19. Re: Weird Problem   <?php /*----------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if($ir['donatordays'] == 0) { die("This feature is for donators only."); } print " <h3>Friends List</h3>"; switch($_GET['action']) { case "add": add_friend(); break; case "remove": remove_friend(); break; case "ccomment": change_comment(); break; default: friends_list(); break; } function friends_list() { global $ir,$c,$userid,$h; print " [url='friendslist.php?action=add']> Add a Friend[/url] These are the people on your friends list."; $q_y=mysql_query("SELECT * FROM friendslist WHERE fl_ADDED=$userid",$c); print mysql_num_rows($q_y)." people have added you to their list. Most liked: ["; $q2r=mysql_query("SELECT u.username,count( * ) as cnt,fl.fl_ADDED FROM friendslist fl LEFT JOIN users u on fl.fl_ADDED=u.userid GROUP BY fl.fl_ADDED ORDER BY cnt DESC LIMIT 5",$c) or die(mysql_error()); $r=0; while($r2r=mysql_fetch_array($q2r)) { $r++; if($r > 1) { print " | "; } print "[url='viewuser.php?u={$r2r[']{$r2r['username']}[/url]"; } print "] <table width=90%><tr style='background:gray'> <th>ID</th> <th>Name</th> <th>Mail</th> <th>Send Cash</th> <th>Remove</th> <th>Comment</th> <th>Change Comment</th> <th>Online?</th></tr>"; $q=mysql_query("SELECT fl.*,u.* FROM friendslist fl LEFT JOIN users u ON fl.fl_ADDED=u.userid WHERE fl.fl_ADDER=$userid ORDER BY u.username ASC",$c); while($r=mysql_fetch_array($q)) { if($r['laston'] >= time()-15*60) { $on="<font color=green>[b]Online[/b]</font>"; } else { $on="<font color=red>[b]Offline[/b]</font>"; } $d=""; if($r['donatordays']) { $r['username'] = "<font color=red>{$r['username']}</font>";$d="[img=donator.gif]"; } if(!$r['fl_COMMENT']) { $r['fl_COMMENT']="N/A"; } print "<tr> <td>{$r['userid']}</td> <td>[url='viewuser.php?u={$r[']{$r['username']}[/url] $d</td> <td>[url='mailbox.php?action=compose&ID={$r[']Mail[/url]</td> <td>[url='sendcash.php?ID={$r[']Send Cash[/url]</td> <td>[url='friendslist.php?action=remove&f={$r[']Remove[/url]</td> <td>{$r['fl_COMMENT']}</td> <td>[url='friendslist.php?action=ccomment&f={$r[']Change[/url]</td> <td>$on</td></tr></table>"; } $h->endpage(); exit; } function add_friend() { global $ir,$c,$userid,$h; $_POST['ID'] = abs((int) $_POST['ID']); $_POST['comment']=str_replace(array("<",">","\n"),array("<",">"," "), $_POST['comment']); if($_POST['ID']) { $qc=mysql_query("SELECT * FROM friendslist WHERE fl_ADDER=$userid AND fl_ADDED={$_POST['ID']}",$c); $q=mysql_query("SELECT * FROM users WHERE userid={$_POST['ID']}",$c); if(mysql_num_rows($qc)) { print "You cannot add the same person twice."; $h->endpage(); exit; } if($userid==$_POST['ID']) { print "You cannot be so lonely that you have to try and add yourself."; $h->endpage(); exit; } if(mysql_num_rows($q)==0) { print "Oh no, you're trying to add a ghost."; $h->endpage(); exit; } mysql_query("INSERT INTO friendslist VALUES('', $userid, {$_POST['ID']}, '{$_POST['comment']}')",$c) or die(mysql_error()); $r=mysql_fetch_array($q); print "{$r['username']} was added to your friends list. [url='friendslist.php']> Back[/url]"; $h->endpage(); exit; } else { print "Adding a friend!<form action='friendslist.php?action=add' method='post'> Friend's ID: <input type='text' name='ID' value='{$_GET['ID']}' /> Comment (optional): <textarea name='comment' rows='7' cols='40'></textarea> <input type='submit' value='Add Friend' /></form>"; } $h->endpage(); exit; } function remove_friend() { global $ir,$c,$userid,$h; mysql_query("DELETE FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",$c); print "Friends list entry removed! [url='friendslist.php']> Back[/url]"; $h->endpage(); exit; } function change_comment() { global $ir,$c,$userid,$h; $_POST['f'] = abs((int) $_POST['f']); $_POST['comment']=str_replace(array("<",">","\n"),array("<",">"," "), $_POST['comment']); if($_POST['comment']) { mysql_query("UPDATE friendslist SET fl_COMMENT='{$_POST['comment']}' WHERE fl_ID={$_POST['f']} AND fl_ADDER=$userid",$c); print "Comment for friend changed! [url='friendslist.php']> Back[/url]"; $h->endpage(); exit; } else { $_GET['f'] = abs((int) $_GET['f']); $q=mysql_query("SELECT * FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",$c); if(mysql_num_rows($q)) { $r=mysql_fetch_array($q); $comment=str_replace(array("<",">"," "), array("<",">","\n"), $r['fl_COMMENT']); print "Changing a comment.<form action='friendslist.php?action=ccomment' method='post'> <input type='hidden' name='f' value='{$_GET['f']}' /> Comment: <textarea rows='7' cols='40' name='comment'>$comment</textarea> <input type='submit' value='Change Comment' /></form>"; $h->endpage(); exit; } else { print "Stop trying to edit comments that aren't yours."; } } $h->endpage(); } ?>   how about that lol
  20. Re: Weird Problem lol, i missed the > at the end lol
  21. Re: Weird Problem ok try that one i posted again.... I forgot to add the $h in the functions...sorry.
  22. Re: [v1]Request For Failing Crime Results to jail so you did add the jail to the users table? if so sorry man...im not sure..
  23. Re: Weird Problem Try this.. But...only if you added the table for the right menu in the $h->endpage() function.. if it was added somewhere else let me know.. but if it was added there. i think this will work.   <?php /*----------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if($ir['donatordays'] == 0) { die("This feature is for donators only."); } print " <h3>Friends List</h3>"; switch($_GET['action']) { case "add": add_friend(); break; case "remove": remove_friend(); break; case "ccomment": change_comment(); break; default: friends_list(); break; } function friends_list() { global $ir,$c,$userid,$h; print " [url='friendslist.php?action=add']> Add a Friend[/url] These are the people on your friends list."; $q_y=mysql_query("SELECT * FROM friendslist WHERE fl_ADDED=$userid",$c); print mysql_num_rows($q_y)." people have added you to their list. Most liked: ["; $q2r=mysql_query("SELECT u.username,count( * ) as cnt,fl.fl_ADDED FROM friendslist fl LEFT JOIN users u on fl.fl_ADDED=u.userid GROUP BY fl.fl_ADDED ORDER BY cnt DESC LIMIT 5",$c) or die(mysql_error()); $r=0; while($r2r=mysql_fetch_array($q2r)) { $r++; if($r > 1) { print " | "; } print "[url='viewuser.php?u={$r2r[']{$r2r['username']}[/url]"; } print "] <table width=90%><tr style='background:gray'> <th>ID</th> <th>Name</th> <th>Mail</th> <th>Send Cash</th> <th>Remove</th> <th>Comment</th> <th>Change Comment</th> <th>Online?</th></tr>"; $q=mysql_query("SELECT fl.*,u.* FROM friendslist fl LEFT JOIN users u ON fl.fl_ADDED=u.userid WHERE fl.fl_ADDER=$userid ORDER BY u.username ASC",$c); while($r=mysql_fetch_array($q)) { if($r['laston'] >= time()-15*60) { $on="<font color=green>[b]Online[/b]</font>"; } else { $on="<font color=red>[b]Offline[/b]</font>"; } $d=""; if($r['donatordays']) { $r['username'] = "<font color=red>{$r['username']}</font>";$d="[img=donator.gif]"; } if(!$r['fl_COMMENT']) { $r['fl_COMMENT']="N/A"; } print "<tr> <td>{$r['userid']}</td> <td>[url='viewuser.php?u={$r[']{$r['username']}[/url] $d</td> <td>[url='mailbox.php?action=compose&ID={$r[']Mail[/url]</td> <td>[url='sendcash.php?ID={$r[']Send Cash[/url]</td> <td>[url='friendslist.php?action=remove&f={$r[']Remove[/url]</td> <td>{$r['fl_COMMENT']}</td> <td>[url='friendslist.php?action=ccomment&f={$r[']Change[/url]</td> <td>$on</td></tr></table>"; } $h->endpage(); exit; } function add_friend() { global $ir,$c,$userid,$h; $_POST['ID'] = abs((int) $_POST['ID']); $_POST['comment']=str_replace(array("<",">","\n"),array("<",">"," "), $_POST['comment']); if($_POST['ID']) { $qc=mysql_query("SELECT * FROM friendslist WHERE fl_ADDER=$userid AND fl_ADDED={$_POST['ID']}",$c); $q=mysql_query("SELECT * FROM users WHERE userid={$_POST['ID']}",$c); if(mysql_num_rows($qc)) { print "You cannot add the same person twice."; } else if($userid==$_POST['ID']) { print "You cannot be so lonely that you have to try and add yourself."; } else if(mysql_num_rows($q)==0) { print "Oh no, you're trying to add a ghost."; } else { mysql_query("INSERT INTO friendslist VALUES('', $userid, {$_POST['ID']}, '{$_POST['comment']}')",$c) or die(mysql_error()); $r=mysql_fetch_array($q); print "{$r['username']} was added to your friends list. [url='friendslist.php']> Back[/url]"; } } else { print "Adding a friend!<form action='friendslist.php?action=add' method='post'> Friend's ID: <input type='text' name='ID' value='{$_GET['ID']}' /> Comment (optional): <textarea name='comment' rows='7' cols='40'></textarea> <input type='submit' value='Add Friend' /></form>"; } $h->endpage(); exit; } function remove_friend() { global $ir,$c,$userid,$h; mysql_query("DELETE FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",$c); print "Friends list entry removed! [url='friendslist.php']> Back[/url]"; $h->endpage(); exit; } function change_comment() { global $ir,$c,$userid,$h; $_POST['f'] = abs((int) $_POST['f']); $_POST['comment']=str_replace(array("<",">","\n"),array("<",">"," "), $_POST['comment']); if($_POST['comment']) { mysql_query("UPDATE friendslist SET fl_COMMENT='{$_POST['comment']}' WHERE fl_ID={$_POST['f']} AND fl_ADDER=$userid",$c); print "Comment for friend changed! [url='friendslist.php']> Back[/url]"; } else { $_GET['f'] = abs((int) $_GET['f']); $q=mysql_query("SELECT * FROM friendslist WHERE fl_ID={$_GET['f']} AND fl_ADDER=$userid",$c); if(mysql_num_rows($q)) { $r=mysql_fetch_array($q); $comment=str_replace(array("<",">"," "), array("<",">","\n"), $r['fl_COMMENT']); print "Changing a comment.<form action='friendslist.php?action=ccomment' method='post'> <input type='hidden' name='f' value='{$_GET['f']}' /> Comment: <textarea rows='7' cols='40' name='comment'>$comment</textarea> <input type='submit' value='Change Comment' /></form>"; } else { print "Stop trying to edit comments that aren't yours."; } } } $h->endpage(); ?>
  24. Re: Weird Problem ok thanks......i will work on this real fast. just wanted to let you know Im pretty sure you where riught its just a table error..that picture shows it.. Thanks for postin
  25. Re: [v1]Request For Failing Crime Results to jail     maybe he just miss this then... SQL   ALTER TABLE `users` ADD `jail` INT(2) NOT NULL AFTER `jail_reason` ;   and put the page back the way he orginally had it not the way i said...cuase he might have just forgot a table alter and the page be fine
×
×
  • Create New...