
KDawg08
Members-
Posts
294 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by KDawg08
-
Are you slow? The template STYLE is the same. only difference is colors and where his links are located!!! OH and my banner connects to all of it!
-
Looks almost like a knock off of my login template. Not quite but close. mines just over 2 years old though.
-
I was trying to set this up offline as well as online. Online i got everything working perfectly so far. in WAMP i made a database and obviously user is "root"... no password... When i login to the script i get in the news.php this error "No database selected" then i get on the auto theft page gta.php "Parse error: parse error in C:\wamp\www\gta.php on line 100" Here are lines 99-101 </tr> <?php }// while loop ?> <tr> It does this for all pages. Any ideas why? I have my connect.php setup like this FOR WAMP: <?php session_start(); ob_start(); $connect = mysql_connect("localhost","root",""); if($connect == TRUE) { if(mysql_select_db("btnmain") != TRUE) { exit("<span style='color: red'>Can't connect to the MySQL database. Please contact the webmaster.</body></html>"); } }else{ exit("<span style='color: red'>Can't connect to the MySQL server. Please contact the webmaster.</body></html>"); } ?> Database name on my desktop is btnmain (For those that wanna ask the easy question first to be safe) It has been created and imported the sql.
-
good point, i see exactly what you're saying. I think i'll leave it alone for now so that it keeps the page loading faster and not slowing it down with images constantly. plus kids that wanna click em alot will put a small load on the site so it's probably best left as is. :)
-
I ended up opening ALL the php files in my ftp program and searched and auto replaced all ,- with nothing. :) Are you starting to make mods to this now too Dayo? I'm interested in filling those missing pages in the game. :) Any information about your mods yet Taxed? For example, what's different, esp pricing etc?
-
This wasn't in functions.php but thanks i will look through my files for that. How much are you posting your script for and any demo/screenies/etc? kind of curious.
-
So i got tired of manually editting the name of each city in travel.php AFTER changing the cities in settings.php through admin setup. Here are some very easy instructions to fix it so it will automatically update when you change the names of cities in settings. First: Open travel.php Second: Search for the following; <td width="100" align="left"><input name="Location" type="radio" value="1" id="location_1" <?php echo $travel_disabled_1; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_1">[b]London.[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[0]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="4" id="location_4" <?php echo $travel_disabled_4; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_4">[b]Paris.[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[3]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="7" id="location_7" <?php echo $travel_disabled_7; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_7">[b]Madrid.[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[6]).",-"; ?></td> </tr> <tr> <td width="100" align="left"><input name="Location" type="radio" value="2" id="location_2" <?php echo $travel_disabled_2; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_2">[b]Rome.[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[1]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="5" id="location_5" <?php echo $travel_disabled_5; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_5">[b]Chicago.[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[4]).",-"; ?></td> <td width="100" align="left" b><input name="Location" type="radio" value="8" id="location_8" <?php echo $travel_disabled_8; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_8">[b]Hong Kong.[/b]</label></td> <td width="50" align="left" b><?php echo "$". number_format($price[7]).",-"; ?></td> </tr> <tr> <td width="100" align="left"><input name="Location" type="radio" value="3" id="location_3" <?php echo $travel_disabled_3; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_3">[b]Tokyo.[/b]</label></td> <td width="50" align="left"><?php echo "$".number_format($price[2]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="6" id="location_6" <?php echo $travel_disabled_6; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_6">[b]Sydney.[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[5]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="9" id="location_9" <?php echo $travel_disabled_9; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_9">[b]Moscow.[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[8]).",-"; ?></td> And HIGHLIGHT it all. Third: Copy and paste the following (REPLACE ABOVE TEXT WITH THIS); <td width="100" align="left"><input name="Location" type="radio" value="1" id="location_1" <?php echo $travel_disabled_1; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_1">[b]<?php echo $location_array[1]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[0]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="4" id="location_4" <?php echo $travel_disabled_4; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_4">[b]<?php echo $location_array[4]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[3]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="7" id="location_7" <?php echo $travel_disabled_7; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_7">[b]<?php echo $location_array[7]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[6]).",-"; ?></td> </tr> <tr> <td width="100" align="left"><input name="Location" type="radio" value="2" id="location_2" <?php echo $travel_disabled_2; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_2">[b]<?php echo $location_array[2]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[1]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="5" id="location_5" <?php echo $travel_disabled_5; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_5">[b]<?php echo $location_array[5]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[4]).",-"; ?></td> <td width="100" align="left" b><input name="Location" type="radio" value="8" id="location_8" <?php echo $travel_disabled_8; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_8">[b]<?php echo $location_array[8]; ?>[/b]</label></td> <td width="50" align="left" b><?php echo "$". number_format($price[7]).",-"; ?></td> </tr> <tr> <td width="100" align="left"><input name="Location" type="radio" value="3" id="location_3" <?php echo $travel_disabled_3; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_3">[b]<?php echo $location_array[3]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$".number_format($price[2]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="6" id="location_6" <?php echo $travel_disabled_6; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_6">[b]<?php echo $location_array[6]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[5]).",-"; ?></td> <td width="100" align="left"><input name="Location" type="radio" value="9" id="location_9" <?php echo $travel_disabled_9; ?> onFocus="if(this.blur)this.blur()"/> <label for="location_9">[b]<?php echo $location_array[9]; ?>[/b]</label></td> <td width="50" align="left"><?php echo "$". number_format($price[8]).",-"; ?></td> To explain what I did more thoroughly, I'm a terrible noob with php and I've not had the time to learn alot with having a newborn etc. Here goes... I found the name of each city in travel.php for example "Hong Kong." and replaced it with <?php echo $location_array[8]; ?> The reason it says [8] is because 8 is the 8th location, AKA Hong Kong. But with this, anytime you update your cities in settings section as an admin, it will update the city name in the travel page. Makes for ease of use, and less of a hassle for you and your members. =]
-
Cant wait to see this.
-
this would be kinda cool to have but not for $25 as i'm poor lol.
-
registration doesnt work at ur link nvm i had to try 3 times for it to work never changed anything once.
-
i went to devtek but there are no scripts on there currently
-
can't wait to see it and how much are you going to end up charging for a copy of it?
-
Is there a way i could make it so the picture of the city changes everytime you click one of the buttons for a different location? basically like this... Say i was in.... Sydney... When i went to travel agency it would automatically show the sydney image (As it does already standard settings), but when i clicked a button to somewhere else it changes the image to that location (Even before you click travel)
-
I would post some but i'm not good enough to create scripts from scratch... i'd have to have something to work off of. lol. Don't wanna take credit for modifying someone elses script ;)
-
How about a login page and template system that is highly customizable and alot easier to understand? I was going to modify my index page for login page but i'm afraid i'll screw somethin big up lol.
-
Another question to add in this thread. Swiss bank: $ 0,- Total Money: $ 1,500,- Total Gang Money: $ 0,- how can i remove the ,- part of it?
-
So i know this is a "Build it yourself" engine basically. Here is my question. Are there any mods that have been made for the missing pages? Here are the ones it says i'm missing: ACTIONS: bank robbery booze brewery extortion hitlist murder police chase stock market MONEY: Swiss Bank LOCATIONS: bullet store car crusher hospital liqueur store shooting range CASINO'S: ace club blackjack lottery multiplayer dice r.p.s. war Anyone made mods for these that don't cost alot? I'm low budget at the moment and I'm working on my newest game. Got tired of mccodes and always having to fix and find security issues, so i thought i would try this one.
-
I assume this means nobody knows for sure what the issue might be?
-
FATAL Error: You have no permission to execute this operation! Anyone know why i keep getting this error? After I login to the "game" and click CREATE (for create first character), I get this error on the next screen... Anyone know why this might be happening? My db user has full access to my db. I installed the script correctly by following the directions that came with the script. I've also checked the database to make sure everything was properly added and such. Would appreciate it if anyone could possibly point me in a correction to whatever i did wrong with the setup. Or is there something else I have to do after installing it before creating a character?
-
Re: [v2] Create a Crystal Thanks for this mod, I have HUGE HUGE ideas for modifications on this. :)
-
Re: [MCCODES V2] Track your Users IP Quick question, If you and your users were using this often say... for example you have X amount of users and 30 users per day use this would it use quite a bit of bandwidth to do the heavy searching plus retrieving information from other sites? or is this one a minimal bandwidth mod? Asking as I like to limit my bandwidth usage on mods to keep it from lagging out etc. plus i just like keeping a lower bandwidth. :)
-
Re: [V1][V2] 50/50 Chance Mod. Free Version Ripped of? Sorry but im with Isomerizer on this one his coding is quality and shouldn't be dis-respected at all! The code's may do the same thing but Isomerizer's code is most likely more efficent and better layed out then yours is. I'm not here to take sides but ISO came in here and started the disrespect just because the coding isn't to "his potential" as he would say. ISO Does some great mods, but there is NEVER a reason to rag on others for making the same kind of mod just because you want more money for your copy... And UCC Did good with this mod whether people like it or not, It is something users will use. I would if i liked the 50/50 script at all but it will help with my random lottery script i'm working on. Thanks for this mod as i will use part of it for my lottery mod for my game. It's a 50/50 script... nothing special nothing fancy, I don't make mods because i don't have that kind of time to do stuff like that other than for my own game such as custom banner changers, and i'm creating a system to earn money/points from flash games i'm working on from scratch. but that's neither here nor there. I think it's stupid on both ends to cry about each others work, each person has a different way to do things, so why can't people just let it be and say good work or not say anything at all?
-
Re: HELP figure it out yourself, since you claim u coded the multi ip blocker thing u should know how to fix this ;)
-
Re: [mccode] ZBank [$5.00] they are combined as one bank and it's actually very tidy for your game and it's a good script, thanks for the mod zero :)
-
Re: [mccode v2] User Shops [$35.00] i think 6 or less now cause i bought one and i have converted it to v1, if anyone needs it converted ask Zero Affect to contact me to get the V1 copy. I will not give this away as it's a paid mod, so you must contact Zero Affect. Thanks for the mod, had a few bugs for v1 but I've fixed those up and it is a great mod. :)