-
Posts
2,018 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by mdshare
-
ok this is v0.01 works without issues except with FF demo at http:/www.criminalexistence.com/radio2.html code for the link rename Test Radio Mod to whatever you want <script language="Javascript" type="text/javascript"> function openRadioPopup(){ day = new Date(); id = day.getTime(); eval('page' + id + ' = window.open("radio2.php", "' + id + '", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=400");'); } </script> [url="#"]Test Radio Mod[/url] radio2.php note that there are some non conventional coding ways as I'm busy adding css etc to it... so remove what isn't needed... <? ////////////////////////////////////////////////// // Criminal Existence Script v0.01 /// // [email][email protected][/email] /// // To be Used and Distribued Freely /// ////////////////////////////////////////////////// //Language $radio_lang = array( "mute"=>"Mute", "stop"=>"Stop", "play"=>"Play", "volume"=>"Volume", "title"=>"CE Radio powered by KrushRadio", "no_choice_made_yet"=>"You have not selected a station.", "you_are_listening_to"=>"You are currently listening to", "controls"=> "Controls", "on" => "On", "off" => "Off", "now_playing" => "Now Playing", "play_url" => "Play an URL", "custom_url" => "Custom URL", "listen_broadband"=>"Listen Broadband", "broadband"=>"Broadband", ); //Settings //If Type is set to 1 the controls are shown as a default on the windows media player $settings = array ( "width" => "200", "height" => "150", "type" => "0" ); ## Disable Error Reporting ##error_reporting(0); ################ ## XML PARSER ## ################ $insideitem = false; $oidar = ""; $tag = ""; $r_name = ""; $url = ""; $broadband = ""; $type = ""; $num = ""; function startElement($parser, $name, $attrs) { global $insideitem, $tag, $r_name, $url, $broadband, $type, $num, $oidar; if ($insideitem) { $tag = $name; } elseif ($name == "STATION") { $insideitem = true; } } function endElement($parser, $name) { global $insideitem, $tag, $r_name, $url, $broadband, $type, $num, $oidar; if ($name == "STATION") { $oidar[trim($num)] = array ( "name" => trim($r_name), "url" => trim($url), "broadband" => trim($broadband), "type" => trim($type) ); $r_name = ""; $url = ""; $broadband = ""; $type = ""; $num = ""; $insideitem = false; return $oidar; } } function characterData($parser, $data) { global $insideitem, $tag, $r_name, $url, $broadband, $type, $num, $oidar; if ($insideitem) { switch ($tag) { case "NAME": $r_name .= $data; break; case "URL": $url .= $data; break; case "BROADBAND": $broadband .= $data; break; case "TYPE": $type .= $data; break; case "NUM": $num .= $data; break; } } } $xml_parser = xml_parser_create(); xml_set_element_handler($xml_parser, "startElement", "endElement"); xml_set_character_data_handler($xml_parser, "characterData"); $fp = fopen("radio.xml","r") or die("Error reading RSS data."); while ($data = fread($fp, 4096)) xml_parse($xml_parser, $data, feof($fp)) or die(sprintf("XML error: %s at line %d", xml_error_string(xml_get_error_code($xml_parser)), xml_get_current_line_number($xml_parser))); fclose($fp); xml_parser_free($xml_parser); #################### ## end XML Parser ## #################### //undefined variables: $oidar[0] = array ( "name" => "", "url" => "", "broadband" => "", "type" => "" ); $final = ""; if (isset($_GET['radio'])) { $radio = $_GET['radio']; }else{ $radio = "0"; } if (isset($_GET['bb'])) { $bb = $_GET['bb']; }else{ $bb = ""; } // Volume array $vol = array( "0"=>"0", "1"=>"10", "2"=>"20", "3"=>"30", "4"=>"40", "5"=>"50", "6"=>"60", "7"=>"70", "8"=>"80", "9"=>"90", "10"=>"100" ); // Go through every radio station and list it $count = 1; for (;;){ if(!isset($oidar[$count]['name'])){ break; } if($oidar[$count]['broadband'] == ""){ $broadband = ""; } else { $broadband = " [[url='./radio2.php?radio=".$count."&bb=1']<font color='#990000'>BB</font>[/url]]"; } if($oidar[$count]['type'] == "rm"){ $ctypen = ""; } else { $ctypen = ""; } $final = $final . " $ctypen [url='./radio2.php?radio=".$count."'][img=.$oidar[$count]['name'].][/url]".$broadband." \n"; $count++; } // Set current url if ($bb == "1"){ $curl = $oidar[$radio]['broadband']; } else { $curl = $oidar[$radio]['url']; } // Set current name if ($radio > 0){ if ($bb == "1"){$cname = $oidar[$radio]['name']." " . $radio_lang['broadband'];} else {$cname = $oidar[$radio]['name'];} } else { $cname = $radio_lang['no_choice_made_yet']; } ?> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <script language="JavaScript"> function changeMute() { Player.settings.mute = 'true'; mute.innerHTML='[url="#"]|<? echo ($radio_lang["mute"]) ?>*|[/url] [url="#"]|<? echo ($radio_lang["play"]) ?>|[/url] [url="#"]|<? echo ($radio_lang["stop"]) ?>|[/url] |<? echo ($radio_lang["controls"]) ?>:| [url="#"]<? echo ($radio_lang["on"]) ?>[/url] [url="#"] <? echo ($radio_lang["off"]) ?>[/url]'; } function changeMute2() { Player.settings.mute = 'false'; mute.innerHTML='[url="#"]|<? echo ($radio_lang["mute"]) ?>|[/url] [url="#"]|<? echo ($radio_lang["play"]) ?>|[/url] [url="#"]|<? echo ($radio_lang["stop"]) ?>|[/url] |<? echo ($radio_lang["controls"]) ?>:| [url="#"]<? echo ($radio_lang["on"]) ?>[/url] [url="#"] <? echo ($radio_lang["off"]) ?>[/url]'; } function ControlsOn() { Player.uiMode = 'mini'; } function ControlsOff() { Player.uiMode = 'none'; } </script> <title><? echo ($radio_lang['title']." - ".$radio_lang['now_playing'].": ".$cname); ?></title> </head> <body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"> <center><table> <td> <STYLE> A.at_adv_here_8114, A.at_pow_by_8114 {font-family: Arial,Sans-Serif; font-size: 10px; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; color: #000099; text-decoration: none; } A.at_adv_here_8114:hover, A.at_pow_by_8114:hover { color: #0000FF; text-decoration: underline; } </STYLE> <SCRIPT type="text/javascript"> adtoll_see_your_ad_here = 1; adtoll_your_text = "Advertise here"; adtoll_show_powered_by = 0; </SCRIPT> <SCRIPT src="http://adserve.adtoll.com/js/at_ag_8114.js" type="text/javascript"></SCRIPT> </td></table></center> <center><table> <tr> <td> <center>[url='http://www.php-games.net/'][img=http://www.criminalexistence.com/promo/ce88x31au4.gif][/url]</center> </td> <tr><td aling='center'>[b]<? echo ($radio_lang['title']); ?>[/b]</td></tr> </table></center> <table> <td> <? // checks if user wants to display controls if ($settings['type'] == "1") { $uiMode = "mini"; $ShowControls = "1"; $ShowStatusBar = "1"; $ShowDisplay = "1"; } else { $uiMode = "none"; $ShowControls = "0"; $ShowStatusBar = "0"; $ShowDisplay = "0"; } // display all radio channels echo ($final); ?> </td> <td> <?php if ($oidar[$radio]['type'] == 'rm'){ print <<< EOF <OBJECT ID=video1 CLASSID='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' HEIGHT=60 WIDTH={$settings['width']}> <PARAM NAME='controls' VALUE='ControlPanel,StatusBar'> <PARAM NAME='console' VALUE='Clip1'> <PARAM NAME='autostart' VALUE='true'> <PARAM NAME='src' VALUE='$curl'> <Font Color=red>ActiveX Control: You must be using Internet Explorer and Real Player 5.0</FONT> <EMBED SRC='$curl' CONSOLE='Clip1' CONTROLS='ControlPanel,StatusBar' HEIGHT=60 WIDTH={$settings['width']} AUTOSTART=true> </OBJECT> EOF; } else { print <<< EOF <OBJECT ID='Player' height='{$settings['height']}' width='{$settings['width']}' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6'> <PARAM name='URL' value='$curl'> <PARAM name='uiMode' value='$uiMode'> <PARAM name='mute' value='false'> <PARAM name='ShowControls' value='$ShowControls'> <PARAM name='ShowStatusBar' value='$ShowStatusBar'> <PARAM name='ShowDisplay' value='$ShowDisplay'> <EMBED type='application/x-mplayer2' pluginspage = 'http://www.microsoft.com/Windows/MediaPlayer/' SRC='$curl' name='Player' width={$settings['width']} height={$settings['height']} AutoStart='true' showcontrols='$ShowControls' showstatusbar='$ShowStatusBar' showdisplay='$ShowDisplay'> </EMBED> </OBJECT> EOF; } ?> </td> </table> <table> <tr> <td align='center' colspan='2'> [b]<? echo($radio_lang['controls']); ?>:[/b] [url='#']<? echo($radio_lang['on']); ?>[/url]/[url='#'] <? echo($radio_lang['off']); ?>[/url] [ [url='#']<? echo($radio_lang['mute']); ?>[/url] [url='#']<? echo($radio_lang['play']); ?>[/url] [url='#']<? echo($radio_lang['stop']); ?>[/url] ] [b]<? echo($radio_lang['volume']); ?>:[/b] <?php while (list($key,$val) = each($vol)) { if (intval($key)>=0){ echo "[url='#']".$key."[/url]\n"; } } ?> </td> </tr> <!-- </tr> <td><center><? echo ($radio_lang['you_are_listening_to'].": [img=.$cname.]"); ?></center></td> </tr> !--> </table> </body> </html> radio.xml real player works also, just ad streams for real player in the same structure where <type> will be rp <?xml version="1.0" encoding="iso-8859-1"?> <!-- Types for Radio Stations: wm for Windows Media (mms://, .asx), rm for Real Media and Winamp Playlists (.ram, .ra, .pls) --> <livestreamradio> <station> <num>1</num> <name>mainstream.jpg</name> <url>http://stream.krushradio.com/stream.m3u</url> <broadband></broadband> <type>wm</type> </station> <station> <num>2</num> <name>darkside.jpg</name> <url>http://stream.krushradio.com/dsrswitch.m3u</url> <broadband></broadband> <type>wm</type> </station> <station> <num>3</num> <name>worldrock.jpg</name> <url>http://stream.krushradio.com/worldrock.m3u</url> <broadband></broadband> <type>wm</type> </station> </livestreamradio> Images, root of script else change the <name> tages with correct dir at the xml Right click image and save Images made by Cyanide Use this at your game/site, contact Bara he will promote your site through the show
-
Re: CE goes Porn Some get through by giving false information, so they get published. They are taken off as soon the Account Manager is aware of the issue.
-
[url="http://www.adtoll.com/?ref=3703"]No AdToll Account, Signup and get $20 in FREE Credit![/url] At AdToll they are very focused on improving the platform. Adtoll has set up a questionnaire available at http://www.adtoll.com/questionnaire.php that you can complete and submit. The questionnaire will be available until the end of March and at that time they will select one customer who will win $500 of free account credit! It only takes a few minutes to fill in the questionnaire and you make a chance on the $500, it's free and if you don't have an account just signup and you get already $20 FREE Advertising Credit.
-
Re: Adtoll review by Vorlen - Make Money With Your Sites - Adtoll For a limited time Adtoll has a huge promotion running where new customers receive $20 worth of account credit absolutely FREE! So be fast and signup for Adtoll, that's $20 FREE Advertising Promo ended
-
Re: Cheburn (adam) Torncity lmao believe what you want The portfolio of Joe Chedburn I am doing the BTEC national diploma for IT practitioners Y1. I am enjoying this course as i find it very intresting. I am learning many new things about computers and how they work. In my spare time I program websites using PHP, I like creating things for other peoples enjoyment. So I created a text based game called TornCity, I have been working on it for the last few months and keep working on it every day. http://web.archive.org/web/200503261341 ... dburn.net/ http://web.archive.org/web/200707040216 ... dburn.net/ http://64.233.183.104/search?q=cache:Kl ... =clnk&cd=4 http://64.233.183.104/search?q=cache:Gt ... =clnk&cd=5 now on chedburn.net he forgot to put a privacy guard on a few years ago... but that can be easy gotten back...
-
[mccode] 1st AS/CE MCCODE Modification [AutoTrainer] [$40.00]
mdshare replied to mdshare's topic in Paid Modifications
Re: 1st AS/CE MCCODE Modification [AutoTrainer] 3 left now -
Re: HELP that's because the database exists and is intact, you don't need to create new tables as they are there.
-
Re: need some help. mysql.php is config.php at v2
-
Re: HELP just remove the sql part from the installer
-
Re: smf theme for mccodes??? read and understand the smf css than adjust your style at your game using the smf css style aka <td style=bg1> could be some work, but you first have to understand css andlearn to read it before you can adjust your game
-
[mccode] 1st AS/CE MCCODE Modification [AutoTrainer] [$40.00]
mdshare replied to mdshare's topic in Paid Modifications
Re: 1st AS/CE MCCODE Modification [AutoTrainer] if I kept the ioncube encryption on it they would have been screwed ;) if you want an encrypted autocron.php godhand I can send you one -
Re: When is it time... that's why I recommend Preferred Servers for new game owners.
-
Re: How much is your site worth dnscoop as the other one seems to be dead The estimated value of http://www.criminalexistence.com is: $11,829
-
Re: When is it time... don't forget that shared hosting plans are usually on top notch servers, quad processors 8Gb ram etc dedicated you start at 512Kb/1 CPU and results could be worse than you was on a shared plan... that costs already around a $99/month ...
-
[mccode] 1st AS/CE MCCODE Modification [AutoTrainer] [$40.00]
mdshare replied to mdshare's topic in Paid Modifications
Re: 1st AS/CE MCCODE Modification [AutoTrainer] I have no clue why you need crystalgym.php as it isn't even mentioned in the install instructions. Read the instructions clearly and it should work as a charm. -
[mccode] 1st AS/CE MCCODE Modification [AutoTrainer] [$40.00]
mdshare replied to mdshare's topic in Paid Modifications
Re: 1st AS/CE MCCODE Modification [AutoTrainer] I'll post later the domains who bought them, and I might make a dedicated page for the mods that we brainstorm and who holds a license. -
[mccode] 1st AS/CE MCCODE Modification [AutoTrainer] [$40.00]
mdshare replied to mdshare's topic in Paid Modifications
Re: 1st AS/CE MCCODE Modification [AutoTrainer] 6 Left When the last 6 licenses are sold this topic will be closed and this mod will never be sold again. -
[mccode] 1st AS/CE MCCODE Modification [AutoTrainer] [$40.00]
mdshare replied to mdshare's topic in Paid Modifications
Re: 1st AS/CE MCCODE Modification [AutoTrainer] thx iso, well the good part of this mod is that it holds a return on investment as it's intended for gameowners to make extra money. Most mods are to please players and give loads for free ingame this one is different. -
[mccode] 1st AS/CE MCCODE Modification [AutoTrainer] [$40.00]
mdshare replied to mdshare's topic in Paid Modifications
Re: 1st AS/CE MCCODE Modification [AutoTrainer] well as we will only sell to trusted sources (10 only) we decided to not use the giberish encrypted parts and have it in plain php giberish that looks like this ƒ(¼?’±•#ÅÂûÎÙ ÷=-°u^’{Iî#¹ -
Putting the brains together of CE and AS (Amazon Survival) we made a mod intended to generate extra revenue for game owners. Concept Players get a new option at the Gym. This option allows them to use credits for the autotrainer. The autotrainer will daily (if activated/user and enough credits) calculate the avg stat gain per day of that user and train him at no energy cost. Revenue generating for GameOwner As all members of the game will see this modification they will try to use it. If no credits they will be directed to a page to buy credits. Credits can be set by an admin. eg $1/credit or $2.50/credit whatever you think a day training is worth at your game. Users can buy for example 30 or more credits at once or just 1. Players This option is extremly usefull for players that go on holiday and don't want to lose their top ranking. They can buy credits and have full days of training a certain stat. Other players would have with their credits a easy way to train a full day without buying/using several energy bars. Autotrainer Mod Info Files: 3 php files, 1 SQL file, 1 cron file , 1 readme Instalation difficulty: Easy, needs some minor edits eg on the paypal webscript Price Only 10 Licenses of this mod will be sold ever, price: $40 this price might seem expensive but you are able to win this back in no time with this modification. How to buy? Contact isomerizer or mdshare Include the domain where you want to install the modification on as it will only run from 1 domain. This to protect the 10 buyers incase it gets stolen. Payment: Paypal only Allow 24h for the delivery of the modification package Demo Can be seen in action at www.amazon-survival.com
-
Re: Adtoll review by Vorlen Well I just purchased several ads and wow, nice extra option for advertisers This option is much easier than creating ref IDs for each different ad you buy on the net. Goal tracking To set up Goal Tracking for this Ad Booking, copy the following code exactly as shown, do not modify it. Paste it into the body of the HTML of a web page on your website that a visitor can only access if they perform an action that meets your defined goal. For example, if your goal is to obtain a purchase from your site you would place the code on your "receipt" or "thankyou for your purchase" page. If your goal is to have the visitor sign up to your newsletter, place the code on the "subscription confirmed page" that a subscriber would see immediately after submitting their details. Once the Goal Tracking code is in place and your webpage has been accessed, we will report your Goal Tracking statistics on the Ad Statistics page. Statistics include the number of conversions, the conversion rate and cost per conversion. The tracking cookie we use to track conversions is valid for 7 days and due to this you should keep the code on your site for 7 days prior to your campaign ending. <center>[url="http://www.adtoll.com/?ref=3703"][img=http://www.adtoll.com/images/banners/adv/468x60.gif][/url] </center>
-
Re: Adtoll review by Vorlen On the Advertiser side: You get much better demographics and statistics where your ads are being placed. They also offer some nice geographical data not just on traffic but clicks. AND its not like some bullshit Alexa stat. Here is a advertiser with some data to show you what I am talking about: [url="http://www.adtoll.com/?ref=3703"][img=http://www.criminalexistence.com/images/posts/Rate_Card_for_PSPISO.jpg][/url] Here is what a order page looks like when you goto it. [url="http://www.adtoll.com/?ref=3703"][img=http://www.criminalexistence.com/images/posts/adtollbook.jpg][/url] Some other interesting things. You can use AdToll for sites that normally you could not use competitors for. Like poker/gambling/porn/adult. Both as a advertiser and publisher. If you do not want those ads on your sites you just do not approve them. I look for good things from this company and I am already happy with the results and service from them.
-
<center> </center> Well, going to AdToll, I see a pretty appealing page. It's got some easy to find and read buttons, to wherever you need to go. You can choose to peruse the examples of Premium Publisher Site's, or you can move on to look at blog entries or search for a place to put your ads. At the top, you find a spot to check things out, in various roles: Publisher, and Advertiser. Publishers being those that wish to have adtoll ads on their site, and an advertiser is one who wishes to put one of their ads, on someone elses site to attract some traffic. When you click the small, "Create and Account" link at the top, you'll find a very well laid out registry page. The first, and definitely most important choice, is whether or not you are an advertiser, publisher, or both. I am both... and thus chose the "Advertiser and Publisher" radio button. Moving down the list you enter your name, email and other contact information that adtoll may require to get into contact with you. The "Other Details section is optional, however out of courtesy, I filled it in, entering other forum, and the various information required in this small section. You can subscribe to their blog via e-mail, but that's a totally personalized choice. I did, but that's just me. You HAVE to accept their ToS and other policies, obviously. Enter a password, confirm it, and "Create Account". Now, I've already got an account, so I cannot walk you through what goes on, but if my memory serves, you can continue shopping for adspace, which is nice. Check your e-mail though, as they do like to send you e-mails to update you on the status of your account and other such USEFUL e-mails. Not spam mail, useful stuff. Once in the "My Account" section, (button at top of page) you can view your ad information. Ads you have paid to have put on someone else's section (As an advertiser) will be in the "My Sponsored Ads" section, and any sites that you have put adtoll on for purposes of your own, will be in the "My Sites" section. The overall appearance of this page is very nice, easy to read, and VERY easy to understand. You do have some other useful functions, which are divided according to what role you are playing. You have an Advertiser section for anyone that is Advertiser (Or both), and you have a Publisher section for anyone that's Publisher (or both). Each of these sections has some useful links. We'll use the advertiser section because most people on the net want to advertise their sites before they have adverts ON their sites. There's two options, Buy a Sponsored Ad (Buy adspace on a specific site), or Buy a Run Of Network Ad (Pay to have your ad on all sites that use adtoll in your categories etc) We'll click the sponsored ad, and come back to the run of network. In the Buy a Sponsored Ad page, you see some useful things. Choices to narrow your search, which really do narrow it a lot. First and foremost, adult sites, non adult sites, or all. You can also choose the ad format, (ie. Text ad, Full BBanner 468x60 etc) and the language of the site you want to advertise on. There are also categories to choose from, such as Automotive, New Sites, Business & Finance etc. I'm going to check out the Automotive category, even though the page is defaulted to all. So far, everything has been exceptionally put together, with a nice color scheme and a generally attractive layout. Well done for getting this far, and it seems they only go further with their good theming. Well, the form is exquisite (Form being look/appearance), and the function is just as pristine. RATES: You will find that rates are hugely varied, based on site traffic and how often ads are clicked. If you want a cheaper ad, find a site that's got less clicks/views, while if you can spend a pretty penny on some ads, you'll get considerably more traffic through the higher traffic websites. There are some really neat features, including the RATE CARDS, which show up-to-date information on the pricing of a site's various ads. VERDICT: AdToll is really well put-together, and you can probably find a site to advertise anything on. There are many good things about adtoll, even for publishers. VISUAL RATING: I'd give this a solid 4/5, yes it's beautiful but there is a LOT of white. FUNCTIONALITY RATING: This site gets a clear out 5/5 for functionality, it has too many nifty tricks and some really nice added benefits for being a member that lets you see things in a wide variety of forms. I highly recommend AdToll as a publisher, and if you can't seem to find places to advertise, you'll probably find one here, for a fair price. <center> </center>
-
Re: Developing locally on your own local PHP/MySQL/Apache server well in theory it should be so easy
-
Re: Developing locally on your own local PHP/MySQL/Apache server start with a clean database (no tables) the installer will populate the database