XCU53S
Members-
Posts
353 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by XCU53S
-
Re: Login [Free] just because i am new here doesn't make me any less better than you that's not your images im not talking about the code i have seen them images on some site you cant expect me to remember every site i visit just in case i need it to prove something against zero, and i am not doubting your work so stop trying to start a argument end of...
-
Re: Login [Free] i have seen this images before not from games else where so you cant say you made them i cant remember where but i am a man of my word and what have i got to lie for? and no i dont want to modify as i can make my own and i shall hopefully release mine in which 100% of it is made by me
-
Re: Login & Register $10 i agree you also you also used spacing really badly anything you have included (not alot) looks like its being cramped in to a tight spot be more creative
-
Re: Logins as i said ill be making a freebie for all wont be the greatest but just a little taster
-
Well you may see from the forums i am not the greatest php coder but web designing is one of my strong points, I prefer not to make to make them and sell copies as i no everyone wants there own unique login, so if you want one give me a small idea of what you want either pm me here or contact me on msn at [email protected] give me a day or two i may even post a free login for all the mccode users. Prices vary from what you desire and how much work i need to do so id say at a estimate price of $20-$30 a piece. Thanks XCUSES.
-
Re: Help-Login Page you never used the align tags and so on its positions badly learn html and CSS
-
Re: Login [Free] dont you think its kinda plain? and to formal for a game
-
Re: v3 game engine i no a some inside info that v3 is going to be cheaper than v2 i think about $200 if i remember correctly thats all i can say...
-
Re: Login Page [$25.00] not being mean but its the ugliest thing ive ever seen
-
Re: Job problem check your day cron file
-
Re: Crime Problem ive fixed the problem for me just had to retrace my steps
-
Re: Crime Problem i am having the same problem its not crimes that the issue its something else e.g. when you buy thing you purchase couble of it when you add to market you add double of the item basically alot of things are doubling im not sure what to do if anyone can help ill really appreciate it maybe some money would help to find the fix
-
Re: Quote Mod well this is not a big change but a half line addition to inform you that your quote has been updated use this as the function: function user_quote() { global $c, $ir; if($_POST['quote']) { $q = mysql_real_escape_string($_POST['quote']); if(strlen($q) > 25) { echo 'Quotes can only have upto 25 characters'; echo ' '; echo '[url="preferences.php?action=uq"]Back[/url]'; } else { mysql_query("UPDATE `users` SET `quote` = '$q' WHERE `userid` = " . $ir['userid']); print "Quote Updated!"; } } else { echo '<h3>Quote Change</h3>'; echo '<form action=preferences.php?action=uq method=post>'; echo 'Enter quote below (<font color="red">25 character limit</font>) '; echo '<input type="text" name="quote" value="' . $ir['quote'] . '">'; echo ' '; echo '<input type="submit" value="Update">'; echo '</form>'; } } this should help some i guess
-
Re: Game Ranks another great addition by richard
-
Re: [Mccode][Free] House Pictures ok i just need to edit a few pages and add a few extra tables to hold the pics in
-
Re: [Mccode][Free] House Pictures thanks paddy it worked
-
Re: crystal bank looks great metallic guy and 'secure' may i and "X_TheJoker_X" you go around the forum putting others down criticising there work the thing is i never see anything from you maybe make us a little addon for gangs should be easy work for you (sarcasm).
-
Re: Religions Mod guys i dont am not using this either i just edited the above posted mod and why would you need a religion or status mod i see no need
-
WORKING Religions Mod Heres is a working version from the religion mod: Open preferences.php Add the following cases: case 'religionchange': religion_change(); break; case 'religionsubmit': religion_submit(); break; Then.. Add these functions in preferences.php: function status_change() { global $ir,$c,$userid,$h; print "<h3><u>Status Change</u></h3><form action='preferences.php?action=statussubmit' method='post'>Current Status: <select name='status' type='dropdown'> <option value='0'>Non Believer</option> <option value='1'>Sikh</option> <option value='2'>Hindu</option> <option value='3'>Muslim</option> <option value='4'>Christian</option> <option value='5'>Other</option> <option value='6'>Hidden</option> </select> <input type='submit' value='Change Status' /></form>"; } function status_submit() { global $db,$ir,$c,$userid,$h; $db->query("UPDATE users SET status='{$_POST['status']}' WHERE userid=$userid"); print "Your Religion has been changed. Do you want to go [url='preferences.php']Back to preferences?[/url] [url='index.php']Or back home?[/url] "; } Then find the Group of links in preferences.php: add this link: [url='preferences.php?action=religionchange']Change Religion[/url] Open viewuser.php: Add where you want religion to be displayed: echo "Religion: "; if($r['religion'] == 0) { print "Non Believer"; } else if($r['religion'] == 1) { print "Sikh"; } else if($r['religion'] == 2) { print "Hindu"; } else if($r['religion'] == 3) { print "Muslim"; } else if($r['religion'] == 4) { print "Christian"; } else if($r['religion'] == 5) { print "Other"; } else if($r['religion'] == 6) { print "Hidden"; } Run SQL: ALTER TABLE users ADD `religion` NOT NULL hope this works for you.
-
Re: Email Activation ok thanks for the share but after edit edit register.php find Code: I couldn't make out what you meant
-
Re: [Mccode][Free] House Pictures ive tried but they dont work im on v2 btw so anyone can help me?
-
Re: [Mccode][Free] House Pictures anyone post a working version in one post there are so many bit in here and so disorganised cant seem to figure out what is right
-
Re: Free 2 - Gym timpitts didnt you learn html yet? if you did you must have missed out alot go to w3schools i learnt all of html in 2 hours actually not all but all of w3schools and i learn nit bits and bobs here and there. learn css also it will advance your html tenfold.
-
Re: crimes will anyone find a fix? or mail me a working one im sitting here helpless :|
-
Re: Updated Display Pic System [V2] great mod richard cant say I'd be using it but youve been releasing many good mods lately keep it up.