-
Posts
3,713 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Zero-Affect
-
It makes it believe one is below the other but infact they both just coincide.
-
I don't use conventional MC bars anymore but i believe it was worked out by width 1px width obviously is just so it can be stretched without any issue. for example the experience bar works out like so $experc = (int) ( $ir['exp'] / $ir['exp_needed'] * 100 ); $exopp = 100 - $experc; [b]Energy:[/b] {$enperc}% [img=greenbar.png][img=redbar.png] basically it's two images the first is the existing experience divided by the experience needed then multiplied by 100.
-
Yes i agree every mod i bought on cronwerks had something wrong with it. That site is so unreliable.Basically i was saying everyone messed up and no one is perfect... LazyT - Exactly because you ain't done owt lol Cronus - I have to admit many of my free modifications have had afew issues, along with afew of my paid modifications, Who hasn't.
-
well basic MC bars are pretty basic but im sure if you did something like... Open photoshop Make New image 100px - 10px Choose a foreground and background color IE( Foreground: d62727 Background: 9b1c1c ) Drop a color into the image Goto 'Layer' on the toolbar then down to 'Layer Style' and on the menu select 'Gradient Overlay' Select normal blend, opacity 80%, Select the top left gradient and click 'Ok' Goto 'Image' on the toolbar then down to 'Image Size...' and change the 'Pixel Dimensions' to 1px - 10px Note: If during image change you cannot edit the height without automatically editing the width then Dis-select the 'Constrain Proportions' Check box near the bottom of the 'Image Size' Prompt. Result: Seconary Result: You could also do a simple background by doing a 1px inner glow on a basic 000000 background image of same standards. This may or may not be helpful my apologizes if it is not detailed enough
-
Wow popular Mod, just kidding but seriously not a good show when your the only poster
-
Off topic: WTF... No one can figure out 100% of bugs at first, Cronus i do remember quite afew of your mods have contained afew bugs but yet again so have many more peoples, LazyT for a example i'm sure i have seen work of yours which i would class very buggy. IE: echo "lol'; On topic: Looks like a cool mod Cronus good luck with sales.
-
a nice filter solution could be something like so // Basically this filters the Variable. // ctype_alnum Simply checks if the variable doesn't contain alpha/numeric chars // ereg_replace simply you replace _ with nothing in the $var // ^this is so it will not recognize the _ to be a issue and then allows _, Alpha and Numeric. $var = (!ctype_alnum(ereg_replace('[_]', '', $var)) ? $var : '' ; echo $var; Hope this helps
-
Dayo if i may make a suggestion, Ask for a secure IPN not just a IPN. It's worth spending money on something that vital.
-
Sounds like a fun modification, i await the code so i can scan through it :)
-
It's actually pretty straight forward, edit the staff form and the table to add a item id and then on completion use the add_item function :evil:
-
more options in hall of fame
Zero-Affect replied to thedestroyer's topic in Requests & In Production
i do believe if your running MC v2 Gangs is already done. -
[MCC ANY] clean up your SUBMIT buttons so there not dull as hell
Zero-Affect replied to Uridium's topic in Free Modifications
Illusions maybe easier in a CSS file mate. -
Blumentals Rapid CSS editor 2010
Zero-Affect replied to mdshare's topic in Programming Tools, Software and much more
This looks interesting i can't wait to test it one. I always have issues with CSS -
Blumentals Rapid PHP editor 2010
Zero-Affect replied to mdshare's topic in Programming Tools, Software and much more
i've always disliked dreamweaver but this looks ok -
ah weird it works now, nice game is it Custom engine?
-
basic html table <table> <tr> <td>line 1</td><td>line 1</td> </tr> <tr> <td>line 2</td><td>line 2</td> </tr> </table> equals: | line1 | line1 | | line2 | line2 | adding after a </tr> is basically pointless because it would bring a out come like so. [space] // [space] is basically a empty line above the table created by the due to it not being inside any table tags it's automatically posted above. [space] // when using the TR tag it picks a line <tr> content of line using <td>inner content</td> then end the line </tr> another <tr> would be a alternative line and so on. | line1 | line1 | | line2 | line2 | I hope i explained that abit more clearly this time.
-
True, but less likely to be conned by someone with alot invested in MWG rather than someone with 100 or so posts. You can also tell the php level by looking at the posts the person posts.
-
I have a issue trying to load your website i don't have any idea why but just seems very slow and the header image doesn't want to load. I'm on 10 meg Broadband and have all the addons installed to load flash and so forth but for some reason just doesn't want to load.
-
Sprintf is basically a filter your only filtering the $userid which most likely is already protected, there is no real (Quick) way of securing any website, unless you code it from scratch. One of the main risks with using someone elses engine for your website is that you put alot of trust into someone elses work. Consider this, just because it cost you 300 bucks doesn't mean it's worth it. MCC is exploitable in many aspects i would suggest using the search option on the forum for ideas on security then cross referencing with php.net the commands used. Yes you can go into globals and change the queries but it still doesn't mean it will be secure.
-
probably best to hire a more experienced person than a trainee then you know you got your money's worth.
-
just wondering, this is a free modification so reselling? might wanna change that to Redistribution or something. I only really scanned over the code quickly but it does look rather well set out, This being your first mod im just curious do you understand everything in the file? why the ? with the </tr> with the would basically output like [space] [space] [space] [space] | item | buy | | test | submit | | test | submit | | test | submit | | test | submit |
-
Gucci Mane, Search Free Plugins section of the forum and study peoples ways of using functions strings variables and so forth then just simply test something of your own. Probably best to take a part time course in Web languages at your local college if your really interested.
-
Google Chrome OS - Available for download
Zero-Affect replied to mdshare's topic in Linux and Webservers
youtube is also a great source. -
php was created in C so i can understand learning C but then PHP will obviously be different, like VB is from C