Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,691
  • Joined

  • Last visited

  • Days Won

    85

Everything posted by Uridium

  1. Re: [mccode v2] Themecreator 100% Completed Working Copy Quick update.. now added ability to View before you choose still working on the donator only theme should be ready for this afternoon
  2. Re: [mccode v2] Themecreator 100% Completed Working Copy [uPDATE] I wanted to add to the Theme-Creator where by your Paying members can benfit by viewing themes non-paying members cant see. its a work in progress at moment and ill try sort out some of the older issues raised from the original Script.. + let Users view a themeshot before they decide to use it. The old version although it works fine lacks what i initailly had wanted it to do.
  3. This will allow staff to send Secret messages to any user. It can only be read by the user who receives it... Call this file staff_secretmess.php   <?php require "globals.php"; ?> <head> <STYLE type="text/css"> <!-- BODY { scrollbar-face-color: #000000; scrollbar-highlight-color: #00FF00; scrollbar-3dlight-color: #000000; scrollbar-darkshadow-color: #00FF00; scrollbar-shadow-color: #000000; scrollbar-arrow-color: #FF3300; scrollbar-track-color: #000000; } --> </STYLE> <body bgcolor="#000000"> <center> <html> <head> <script language="JavaScript"> len=0; function CalcKey() { len=0; var temp=document.Encrypt.Key.value; for(i=0;i<temp.length;i++) { len=len+temp.charCodeAt(i); } if(len==0) { alert('Please Enter the Players ID #'); document.Encrypt.Key.focus(); } return len; } function Encryption() { CalcKey(); document.Encrypt.Encrypted.value=""; var txt=document.Encrypt.normal.value; var net=""; var fin=0; if(len>0) { if(txt.length>0) { for(i=0;i<txt.length;i++) { fin=txt.charCodeAt(i)+len; if(fin>99) { net=net+fin; } else { net=net+'0'+fin; } } document.Encrypt.Encrypted.value=net; document.Encrypt.normal.value=""; } else { alert('Please Enter the Text to be Encrypted'); document.Encrypt.normal.focus(); } } } function Decryption() { var txt=document.Encrypt.Encrypted.value; var j=3; var temp1; var res=""; CalcKey(); if(len>0) { if(txt.length>0) { for(i=0;i<txt.length;i+=3) { var temp=txt.substring(i,j); temp1=(parseInt(temp)-len); var t=unescape('%'+temp1.toString(16)); if(t=='%d' || t=='%a') { res=res+' '; } else { res=res+t } j+=3; } document.Encrypt.normal.value=res; document.Encrypt.Encrypted.value=""; } else { alert('Please Enter the Encrypted Text'); document.Encrypt.Encrypted.focus(); } } } </script> </head> <body> <form name="Encrypt"> <p align="center"><font color="yellow"> [b]Enter Players ID # Below: that you want this message to be read by[/b] <input type="text" name="Key" size="20" maxlength="5"> <p align="center"> [b]Enter The Text Below and click on ENCRYPT:[/b]<font color="lightgreen"> <textarea rows="9" name="normal" cols="69">Enter here the Text to be Encrypted </textarea> <p align="center">[b]Copy the Below code when ENCRYPTED and send to the USER [/b]</p> <textarea rows="10" name="Encrypted" cols="69">Enter here the Code to be Decrypted.</textarea> <p align="center"> <input type="button" value="Encrypt" onclick="Encryption()"> <input type="button" value="Decrypt Message Now" onclick="Decryption()"> <input type="reset" value="Reset All"> </form> </body> </html> <? $h->endpage(); ?>   Now call this file secretmess.php   <?php require "globals.php"; ?> <head> <title>Message Decryption</title> <STYLE type="text/css"> <!-- BODY { scrollbar-face-color: #000000; scrollbar-highlight-color: #00FF00; scrollbar-3dlight-color: #000000; scrollbar-darkshadow-color: #00FF00; scrollbar-shadow-color: #000000; scrollbar-arrow-color: #FF3300; scrollbar-track-color: #000000; } --> </STYLE> <body bgcolor="#000000"> <center> <html> <head> <script language="JavaScript"> len=0; function CalcKey() { len=0; var temp=document.Encrypt.Key.value; for(i=0;i<temp.length;i++) { len=len+temp.charCodeAt(i); } if(len==0) { alert('The ID # You Entered Doesnt respond to the ID # Stored'); document.Encrypt.Key.focus(); } return len; } function Encryption() { CalcKey(); document.Encrypt.Encrypted.value=""; var txt=document.Encrypt.normal.value; var net=""; var fin=0; if(len>0) { if(txt.length>0) { for(i=0;i<txt.length;i++) { fin=txt.charCodeAt(i)+len; if(fin>99) { net=net+fin; } else { net=net+'0'+fin; } } document.Encrypt.Encrypted.value=net; document.Encrypt.normal.value=""; } else { alert('Please Enter the Text to be Encrypted'); document.Encrypt.normal.focus(); } } } function Decryption() { var txt=document.Encrypt.Encrypted.value; var j=3; var temp1; var res=""; CalcKey(); if(len>0) { if(txt.length>0) { for(i=0;i<txt.length;i+=3) { var temp=txt.substring(i,j); temp1=(parseInt(temp)-len); var t=unescape('%'+temp1.toString(16)); if(t=='%d' || t=='%a') { res=res+' '; } else { res=res+t } j+=3; } document.Encrypt.normal.value=res; document.Encrypt.Encrypted.value=""; } else { alert('Wrong window copy and paste your Code in the bottom window then click on Decrypt Message'); document.Encrypt.Encrypted.focus(); } } } </script> </head> <body> <form name="Encrypt"> <p align="center"><font color="yellow"> [b]Enter Your ID #: Below[/b] <input type="text" name="Key" size="20" maxlength="5"> <p align="center"> [b]Your Encrypted message will be visible here:[/b]<font color="lightgreen"> If the message Appears Garbled then you have either entered wrong ID #. <textarea rows="6" name="normal" cols="69">This Window will Show the Encrypted Message </textarea> <p align="center">[b]Place the Coding I sent to your Inbox here: and click on REVEAL MESSAGE [/b]</p> <textarea rows="6" name="Encrypted" cols="69">Copy & Paste message sent to your inbox Here.</textarea> <p align="center"> <input type="button" value="Reveal Message" onclick="Decryption()"> </form> </body> </html> <? $h->endpage(); ?>   now add to smenu.php   > [url='staff_secretmess.php']Secret Message[/url] Staff can create the secret messages but users can only read them
  4. Re: So many of one? I gotta say ;) i havent seen a site yet that comes close to what CE has achieved be it a free or paid mod.. I personally like the idea of remakes from the same scripts added over and over gives you the opportunity to mix n match. an example of my scripts is that they are ALL related to one sort of a script already done by MCC The staff_users script has to be one of the most re-modded scripts on here.
  5. Ever wanted to expand your game or even make a Tournament system. this addon will let you do just that you can invite other MCC websites to your site to Participate in Tournaments. from your game... Download... http://kmleague.net/ set it up and start inviting others for competitions... This has got to be better than just having a normal game ;)
  6. Re: [MOD] V2 Theme Changer as Promised 96% completed I was hoping i wouldnt have to go as far as contacting his host and that this could be settled amicably i will how ever give grace of 24 hours before i decide what to do.
  7. Re: [MOD] V2 Theme Changer as Promised 96% completed   I visited your website and found that your selling my attack image and theme creator although this was a free mod i must stress that it was NOT intended to be SOLD. the theme creator also has exerts from KILLAH aswell as script work from myself..... I want all my Mods that your are selling from your ste to be REMOVED from any package...
  8. Re: MCcodes V2 status mod nice one :) +1 from meeeeeeeeeeeeeeeeeeeeeeeeeee :)
  9. Re: [mccode v2] Anolog Clock   Why do you have to get involved everytime... didn't you leave? need more attention or something? JOG ON mate But i though us 3 were in love ?? Youve shot me down in flames now im taking back the dress lol
  10. Re: [mccode v2] Anolog Clock the sooner them two get married the better we will all be ;)
  11. Re: [mccodes v2] Magic 8 Ball   Stupid comments like this are what stop Scripters from progressing. regardless of what you think of it keep it to yourself..... +1 for the script from me though.. He's shown he can use initiative and invent ideas of his own.. Weldone :)
  12. Re: Time to Guess Nynas Age ;)   Damn thats a better way of thinking of a solution ;)
  13. List or Characters.... Betty Wont Bety Will Major Asburn Herb Avore Dawson DeTowel E. Nuff Justin Case Kenny Doitt Yin Pain Kitt N. Caboodle Alfredo Heights Smart E. Pants Kay O'Pectate Saul E. Terry Justin Time Adam Muhway May T. Surprise Sid Downe Allan Sundry Ann Thrax Farrah Mones Sue Prize Beau N. Arrow Robin Banks Polly Ester Andy Gravity Rocco Gibraltar Eva Ready Hazel Nutt Jacques Strap Clara Nett Terry Bull Eileen Dover Suppose i'll start the story you have to use at least one or more names from the list above in your story and most continue from where the last postee ended... amke sure you BOLD any names used for easy referemce The story begins Betty Wont was a very timid female although she was short sighted she could tell Robin Banks was up to no good.............................
  14. Re: Time to Guess Nynas Age ;)   Did she pay you too type that ;)
  15. Re: Time to Guess Nynas Age ;)   Think man Think lol
  16. Re: Time to Guess Nynas Age ;) well she mentioned some time ago she coded duriing the early 80s so im kinda flucuating at about 45
  17. Id say 40+ or higher :)
  18. Re: DJ Control Center   That is quite true regards the Pass the Parcel script but i think you can understand that in comparrison to the DJcenter the Pass The Parcel was a lot more difficult and aquired alot more functions than the DJcenter.. The Djcenter uses a totally different approach And i quite Basic...
  19. Re: DJ Control Center $25.00 Full Package includes any Updates i make or $35.00 if you want me too install it for you... contact me on [email protected] Paypal Addy [email protected]
  20. Re: DJ Control Center DJ chat system is now working and added to the zip will install link for those that wish to test it when they login in via the test I will launch this MOD once im happy everything is running correctly and that ive added updates that are needed.... you can use these links to check the members view from ingame www.slave-traders.net/trackrequests.php www.slave-traders.net/timetable.php
  21. Re: DJ Control Center Ok ive created a test site for you to try it out http://www.slave-traders.net/DJcenter/ use dropdown to select test password : test Admin Functions have been disabled on this test site....
  22. Re: DJ Control Center View from ingame Request page From from Admin Center for Booking Slots View from Users ingame for DJ time tables...
  23. Seems that most game sites now are using radio stations to keep their members occupied Ive been coding one now for about 2 years yep its a long time. but anyway ive finished it and its been tested. Whats it do. Your members can request tracks, send personal messages to the online DJ, Compete when Competitons are being aired. Full 24/7 DJ Rota to tell Users whos Djing at any given time..   Admin section.. Create new Dj's any at level Admin, Senior DJ, Junior DJ, In Training. DJ's can build a Profile for users to view. Dj's Can Ban Tracks that a user selects even before its been selected... Admin can ban Dj's and delete accounts. They can also Chat with each other ( ** Still building this feature) DJs can Book and Unbook their slots easily and once done is also altered via the members Timetable Panel All shoutcast server and SAM setup protocols are available for your DJ's to easily setup their Broadcasters with the Admin center.. Entire system is MYSQL driven with some files that need CHmodding Easy Installation with setep by step guide. Requests and Timetables are viewable and useable from inside the game... $25 for full package ** Chat when finalised and tested will be given to those that have purchased this mod Free of charge....
  24. Uridium

    Error Reporting...

    Re: Error Reporting... That isnt in any of the scripts ive done i was reading up on it on google and it was suggested altering the php.ini error_reporting(E_ALL) Problem is on the godaddy SSH it isnt an easy task.
  25. Uridium

    Error Reporting...

    My server seems to be going mental and is reporting every small error even though it can be run correctly example... my $_SESSION always reports faults and $_GET is also reporting faults.. Notice: Undefined variable: page in /home/ml/public_html/DJcenter/dj/delete.php on line 9 I have one page with 50+ Error reports.. Does anyone know how to alter the php.ini on a Godaddy Virtual Server with their Java SSH.... Notice: Use of undefined constant name - assumed 'name' in /home/ml/public_html/DJcenter/dj/showtimetable.php on line 26 Notice: Use of undefined constant name - assumed 'name' in /home/ml/public_html/DJcenter/dj/showtimetable.php on line 26 Notice: Use of undefined constant name - assumed 'name' in /home/ml/public_html/DJcenter/dj/showtimetable.php on line 26 Notice: Use of undefined constant name - assumed 'name' in /home/ml/public_html/DJcenter/dj/showtimetable.php on line 26 Notice: Use of undefined constant name - assumed 'name' in /home/ml/public_html/DJcenter/dj/showtimetable.php on line 26   Yet the script works fine... im using Godaddys Virtual server just need to alter the php.ini from the SSH which isnt an easy task with Godaddy has anyone got any tips on how to do this.
×
×
  • Create New...