
Vali
Members-
Posts
150 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Vali
-
Re: Post Apacolyptic Turn Based HEX Stratagy Game Concept, seeks team of coders BTW, he wants "steam punk" style game, nothing to do with the attached image / post-apocalyptic.
-
Re: What would you do with $100,000,000? You forgot drugs :D that's in the "hoes" section, i don't use em.
-
Re: What would you do with $100,000,000? booz and hoes, probably...
-
Re: captcha or another method those are the easiest one to break... all you have to do is classify the images used, and since you only have a few, all it takes is a few min. if you want a better way of doing it, make a simpel math question, ex: "5 + 6 = ?" You use "+","-","/","*" and low numbers (so retarded kids can get it right...) Then, you use a few random fonts to render it, change it size, angle, color, opacity at random, and put it on some random background image, and render on it some semi transparent shapes / distort it with some watter ripple effect. That one will be harder to break with "out of the box" tools, and doesn't take long to do (GD/ImageMagic, PHP)
-
Re: Post Apacolyptic Turn Based HEX Stratagy Game Concept, seeks team of coders Added you to my msn, lets chat when we have a few free min.
-
Re: Free Advertising For Your Games so how many users should be expected from your site?
-
Re: Class Problem You declared the $db globally in your page. Just use the global keyword to reference it inside your class: global $db; or pass it to the class.
-
Re: Any ideas? Um... Okay, how about this: Adam Sandler is like in love with some girl. But it turns out that the girl is actuallya golden retreiever or something.
-
Re: Looking for Pro Php COders I'm one of them (10 years + codding), so if you need stuff done, PM me. But i don't work for peanuts :wink:
-
Re: [REVIEW] Korporate Thugz! Looks nice mate, but you need to polish it a bit more. Also, make sure to add your COPY in the footer for all pages.
-
Re: [McCodes V2] Unique Template's cool added you.
-
Re: Need help with this there's no such thing...
-
Re: [McCodes V2] Unique Template's Stuff like: "click here to register", a few lists (scores, inbox, resources, posts list) and forms made to look nicer (buy units/buildings, register). I only need design in PSDs, I'll make the html/css. I already have the html done, so all I would need there is a PSD with how it should look (prob some BG image for my list). We can talk on MSN for more info. (will have to show you what I have before work can begin)
-
Re: [McCodes V2] Unique Template's hey Do you do just layouts? or can you also do other design work? I need to pretty up my game :p I have templates and all, just need a few custom (IE: not stolen work) images around my game and better colors for lists and forms and such (I'm a programmer so might as well be color blind). - Vali
-
Re: Declared As A Business? (UK) That's not correct, he will have to pay taxes on his income. Else, what's the difference between that "guy around the corner selling fruit", his "wife around the other corner selling fruit" and his other "5000 employees around other corners selling fruit for him".
-
Re: Declared As A Business? (UK) Basically you must pay taxes on ALL your income. If you don't make the game a "company", then all the donations the game gets you will add to your income (salary or wherever you get your $), and and you will have to pay tax on that. If you make the game a "company", then that company will pay tax on each sale (so you charge the user the tax). It will also have to pay tax on it's income, but that's calculated differently than for an individual. Example: you pay less tax if you make less profit, and more if you made more. (so you can say you pay tax on profit only) But, to get the $ out of the company, you need to make yourself an employee/owner or the company with a salary. And you will pay the income tax on that salary. The one benefit with the company is that if you have a job, with X salary, and a company with Y income, you pay less tax total for the $ you get (since you keep the $ the company gets to the company) And, depending on the company, you can count some of the things you use as company things (say a new pc, or 1/4 of your house as an office), and those decrease the profit of the company, and tax you pay on the money that company made. Until you make enough $ from your game, I don't think it's worth the time, effort and money to turn it into a company. Just add it's income as "extra income", since chances are you didn't make that much. :-D
-
Re: IPN info... Make sure you turn on the "instance payment notifications" :p
-
Re: Need a decent coder - will pay define "cheap"
-
Re: Rise Of Lycans why the hell you guys keep giving access to your site's code to other people...
-
Re: Rise Of Lycans looks "old school" :p
-
Re: [McCodes V2] Unique Template's Depends on what he can offer. I contacted him about a design, lets say what the result will be.
-
Re: Serializing data That may be easier to implement than 3rd normal form tables, but you won't be able to search on them any more.
-
Re: Alternate Table Rows You can use jQuery for this: #1 you render your HTML normally. #2 you create some css: table.zebra tr.even td, table.zebra tr.even th { background-color:#FFF; } table.zebra tr.odd td { background-color:#F4F7FB; } #3 you add some javascript: $( function(){ $(?table.zebra tr:even?).addClass(?even?); $(?table.zebra tr:odd?).addClass(?odd?); }); Now all the tables of the class "zebra" will have alternating colors. No need for anything in the PHP code for the display.
-
Re: Plug-In System? Read on on SVN / CVS. The basics are: - do a "snap shot" of your game. - you do your changes to the game. - you create a patch using SVN or CVS -- that will put all the changes you did in some file. - you then zip that file up and post it somewhere for others to download. If someone wants this in their game, all they have to do is: - download the patch zip - unzip it somewhere - apply it to their game (done via SVN / CVS, it's a one line command) They are done. If they want this mod out - They go in SVN / CVS and remove the patch.