Saint
Members-
Posts
56 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Saint
-
Hi i am a learning designer and i am creating banners for games for free, this is just so that i can get experience, if you would like me to create ou one please contact me and tell me exactly what you require and i will give it a go, you dont haveto use it but this will help me develop my skills. if you like what i make please feel free to give me a +1 xD Thanks saint,
-
Re: [mccode v2] Golden Snitch No problem just pretty, quick for somebody that first looked into code 3 days ago! Probobly theminemod but with a few renamedthings in there, no offence though, i wouldnt be able to do this.
-
Re: [mccode v2] Golden Snitch You must be a super genius to be able to code that after 3 days of starting to learn php.....
-
[mccode v2] Freeze & Reactivate a Users Bank Account
Saint replied to Uridium's topic in Free Modifications
Re: [MOD] V2 Freeze & Reactivate a Users Bank Account My default is set to 0 and also the sql is as it should be but still it doesnt work :/ has anybody else installed this to see if it works? -
[mccode v2] Freeze & Reactivate a Users Bank Account
Saint replied to Uridium's topic in Free Modifications
Re: [MOD] V2 Freeze & Reactivate a Users Bank Account I have just installed this script and it doesnt work, when you type 1 in the user edit form and click submit or "edit user" it doesnt stay as 1 it resets back to 0. any ideas as to why? -
[mccode v2] Freeze & Reactivate a Users Bank Account
Saint replied to Uridium's topic in Free Modifications
Re: [MOD] V2 Freeze & Reactivate a Users Bank Account I will install this script now ill get back to you in around 10 mins.... -
Hi people of CE, could anyone make an edit in the gang functions php?, when you go to edit gang it only displays the gangs ID to edit and this can become confusing if you have a popular game, i want it so that instead of showing the ID number it showsteh name of the gang you want to edit, thanks
-
Re: crons not working properly I had this problem, have you used thecorrect codes that the mccodes installer gave you? My problem was that my host had blocked crons, simply send them a message and tell them your crons do not run and request they activate crons for your host package, my host did this within the hour. Just try it let me know how you go on.
-
Re: Xbox 360 Rant Ive been through 2 XBOX 360s is the past 2 years due to the ring of death!!!
-
Re: Query Error - Email Validation Thank You everybody for your support with this problem, thanks to everybody who helped, upmost respect to Templar and Floydian for between them sorting this whole problem out. They truely are amazing coders POST CLOSED!!!
-
Re: Query Error - Email Validation Thanks To Floydian i now have that query error fixed!! He is a legend haha. But nowi have anotherprolem haha its one after another withthis haha, it seems that i havnt been all the code for the email verification to function properly, when i go to email and click on theactivation link it says youare activated but when i try to log into teh game it says you have not activated, im guessingthat this is missing something that inserts into the sql to say you have activated or maybe it is missing an "if" "else" command to say if activated = 1 thenlogs you in :/
-
Re: Query Error - Email Validation Thanks To Floydian i now have that query error fixed!! He is a legend haha. But nowi have anotherprolem haha its one after another withthis haha, it seems that i havnt been all the code for the email verification to function properly, when i go to email and click on theactivation link it says youare activated but when i try to log into teh game it says you have not activated, im guessingthat this is missing something that inserts into the sql to say you have activated or maybe it is missing an "if" "else" command to say if activated = 1 thenlogs you in :/
-
Re: Query Error - Email Validation Also the Random_string links to the rfunctions.php file which has this code at the top of the page so im guessing that this is where the random codeis generated. <?php function random_string($type = 'alnum', $len = 8) { And for that to function, i added "include rfunctions.php" at the top of my register page, but still no success and getting that same error i posted before. I BEG!! Somebody please help :/ Much Appritiated In addition to last post i now have to edit this becasue i forgot to say i have updated my insert query so now there is a column for random_string. Here is my updated Query code $db->query("INSERT INTO users (username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney, lastip, lastip_signup, Random_key) VALUES( '{$username}', '{$username}', md5('{$_POST['password']}'), 1, $sm, 0, 0, 1, 12, 12, 100, 100, 5, 5, 100, 100, 1, '{$_POST['gender']}', unix_timestamp(), '{$_POST['email']}', -1, '$IP', '$IP', random_string('alnum', 32)"); $i=$db->insert_id(); // get data just entered $getUser = mysql_query("SELECT userid, login_name, email, Random_key FROM users WHERE login_name = '{$username}'") or die(mysql_error()); $row = mysql_fetch_assoc($getUser); // Send rego email $stamp = unix_timestamp; $to = $_POST['email']; $subject = "Gangstas City Account Activation"; $body = "Hello " . $username . ",\n\nThank you for registering at Gangstas City!\n\nClick this link to activate your account: http://www.gangstas-city.com/activate.php?ID=".$row['userid']."&key=".$row['Random_key']." \n\n -Saint"; $headers = "From: [email][email protected][/email]\r\n"; if (mail($to, $subject, $body, $headers)) {} Sorry if you think that im flooding this page full of posts but i am trying my upmost hardest to give u as much nformation as possible so you have an understanding of what i have done.
-
Re: Query Error - Email Validation Please explain, I dont understand what you mean by this comment......
-
Re: Query Error - Email Validation I dont know why it is there, search for [V2] Email Activation in the search and click on the link, the instructions on how to install are not clear and it tells me to add that in the place i have shown you, it also asked me to add sql under the named "activation" and "random_key" I thought that the problem is the fact that the sql was wrong so i added an sql under the name "random_string" but it still did not work.
-
Re: Query Error - Email Validation Hereis the insertQuery and Script =D $db->query("INSERT INTO users (username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney, lastip, lastip_signup) VALUES( '{$username}', '{$username}', md5('{$_POST['password']}'), 1, $sm, 0, 0, 1, 12, 12, 100, 100, 5, 5, 100, 100, 1, '{$_POST['gender']}', unix_timestamp(), '{$_POST['email']}', -1, '$IP', '$IP', random_string('alnum', 32)"); $i=$db->insert_id(); // get data just entered $getUser = mysql_query("SELECT userid, login_name, email, Random_key FROM users WHERE login_name = '{$username}'") or die(mysql_error()); $row = mysql_fetch_assoc($getUser); // Send rego email $stamp = unix_timestamp; $to = $_POST['email']; $subject = "Gangstas City Account Activation"; $body = "Hello " . $username . ",\n\nThank you for registering at Gangstas City!\n\nClick this link to activate your account: http://www.gangstas-city.com/activate.php?ID=".$row['userid']."&key=".$row['Random_key']." \n\n -Saint"; $headers = "From: [email][email protected][/email]\r\n"; if (mail($to, $subject, $body, $headers)) {} $db->query("INSERT INTO userstats VALUES($i, 10, 10, 10, 10, 10, 10)");
-
Hi when i installed the "[V2] Email Activation" from this website, i did exactly what it said i even added teh sql it told me and i still get this error. 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 '' at line 1 Query was INSERT INTO users (username, login_name, userpass, level, money, crystals, donatordays, user_level, energy, maxenergy, will, maxwill, brave, maxbrave, hp, maxhp, location, gender, signedup, email, bankmoney, lastip, lastip_signup) VALUES( '1234', '1234', md5('567'), 1, 100, 0, 0, 1, 12, 12, 100, 100, 5, 5, 100, 100, 1, 'Male', unix_timestamp(), '[email protected]', -1, '55.555.53.51', '51.555.95.84', random_string('alnum', 32) Can Anybody help???
-
Re: Primary and Secondary Weapon Thanks for your comment Alabama but if you read my first post i have tried that before ut peopeljust been disarming so they dont get attacked :/, therefor that will not work properly.
-
Re: Primary and Secondary Weapon Well i am new to this how would i do that?, ino i would use an if...else command but wouldnt know how to make it :-/.
-
Hi CE i was wondering if any of you know how i can fix this problem i am having, when people attack on my game they have this little shifty way of doing it, they get the other person to disarm and the lower level attacks the higher level and gains a lot of exp, this is making it easier for people to get high exp and level up very fast, i was wondering if any of you knew a way around this, i dotn want anything which stops them attacking them when nothing is equiped as then people will just disarm when they log off so nobody can attack. Thanks i will appritiate all of your responses.
-
Re: URGENT HELP!! Setup Game Dont make stupid comments before hearing my problem the problem i have is nothing to do with the actual install i dotn need your help its fine now... Ignorent people on here :-)
-
URGENT! I am in need of a coder who knows how to set up a text based game, ime having a few problems and i just need a few questions answering, so if you understand how to set up games then please comment back on this post and i will provide you with my msn and we can talk on their, thanks. Regards Saint
-
Re: Attack exp Yep Im still having the same problem :-( Guess knobody can do this. I will pay somebody to make me something .
-
Hi i really nered help with this matter.... when people attack they are able to disarm to let theother person win. this is a big problem for me becasue people advance to fast in my game.level 50s can disarm and let level 5s atack them and gain like 1234% exp a time. i would like some thing to stop this please. I would reli appritiate it. Thanks Saint
-
Re: [Free] [V1] Guess What Cup? (Casino Game) Ahh yes sorry guys :P imissed something (obviously) :-P thanks fr the correction zaver :wink: