-
Posts
3,713 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Zero-Affect
-
Re: [V2] Upgraded Brothel Such a nice guy... + 1 m8
-
Re: [Please Read] Requesting Help poorly stated wow it's like reading a book. ill just skip over this and come to some points i thought kinda wrong. illegal software is wrong but sometimes the companies charge way to much just like mono city. unreliable un-secure and basically crap the only way mc got good is because coders secured it we basically cleaned up their mess. If people edit mc and sell it props to them for fixing mc's major errors and fixing the entire engine, i mean if someone was to buy mc v2 edit it to make it 2000% better i think they deserve the right to sell it. codes by coders / programmers with copyrights no that is a issue which should be cracked down on maybe some type of encryption could be set forth so that you have to buy the software to decrypt from coders... unique keys is a option but crackable obviously look at the software. i really didn't read this post so im just hoping im on the right track i do know many will disagree but mc is garbage it needs a make over. i still prefer horizon engine sounds like the most secure engine so far... but if i find someone selling mc with new functions fixed errors and way better modifications (their own) then i think it is not effecting me so why should i care. what have mc done for us besides take our money and run like hell, they could have taken a dump on a plate and just given it to us and it would have been more satisfactory,
-
Re: [V2] Upgraded Brothel ah yeah sniko i meant '..' if its ' and {} if its " for statements also hint for the future $db->query('UPDATE `users` SET money = money - '.$price.' WHERE userid = $userid'); $db->query('UPDATE `users` SET brotheljoin = 1 WHERE userid = $userid'); could easily be one query like so $db->query('UPDATE `users` SET money = money - '.$price.', brotheljoin = 1 WHERE userid = $userid'); but i still prefer the sprintf way which i can explain in more detail in the near future
-
Re: [V2] Upgraded Brothel i can't test this so im assuming it's ok now?
-
Re: [V2] Upgraded Brothel Looks good for a first attempt Sniko, by the way anyone disses i will have ur lifes in your posts. you may wanna be reminded this is a learner not a pro like which most of you think you are. give him props where it's due he did this withiin 20 mins of me showing him some new techniques so his brain will be semi mashed lol
-
Re: Problem with my game on firefox hard to say without seeing something wow Alabama keep it pg please. it is the code because everything i code is specified for firefox use i dislike ie with a passion i actually told my members to download firefox lol
-
[MCcodes All] Staff Members cannot be attacked.
Zero-Affect replied to Undergroundcity's topic in Free Modifications
Re: [MCcodes All] Staff Members cannot be attacked. i don't play the game but i do not have this either people know not to attack me cause i mail bomb them lol or gang bomb depends on how bored i am hahaha exactly, i would do that if i had them but i dont want to pay money, especially because the exchange rate at the moment sucks something cronic! If i was going to use this i would just put a block on my ID being attacked! tell me about it lol someone tried asking me for money back then i checked and he actually paid me less so i got more money it was fun i prefer to work in dollars but i don't mine euros yen pounds pesos anything ill even take milk tokens and food stamps lol -
Re: [showcase] CriminalImpulse.com Released! If by common you mean custom made.. then yes. This is the second time i have seen your site and wow yeah i see why your users like it good job mate. where did you advertise?
-
[MCcodes All] Staff Members cannot be attacked.
Zero-Affect replied to Undergroundcity's topic in Free Modifications
Re: [MCcodes All] Staff Members cannot be attacked. i don't play the game but i do not have this either people know not to attack me cause i mail bomb them lol or gang bomb depends on how bored i am -
Re: [mccode v2] Fishing Mod By project do you mean code a entire game from scratch or just modifications for mc i would suggest the game edit mc everyone else does
-
[MCcodes All] Staff Members cannot be attacked.
Zero-Affect replied to Undergroundcity's topic in Free Modifications
Re: {Any Version} Staff Members cannot be attacked. i believe it's $odata but i may be wrong i did this for bullet i think via pm ask him -
[mccode v2] Point & Click a script that everyone here adds too..
Zero-Affect replied to Uridium's topic in Free Modifications
Re: [mccode v2] Point & Click a script that everyone here adds too.. Nah matey not Critersizing just thought people would want to share their coding abilities. The idea was that there would be an image for each page kind of like a Visual adventure..... where Items found in the normal part of the game could be used in parts of the new game.. goto the crims and try copying their explore i bet people would love that -
Re: [mccode] Free Starter Pack No problem
-
[mccode v2] Point & Click a script that everyone here adds too..
Zero-Affect replied to Uridium's topic in Free Modifications
Re: [mccode v2] Point & Click a script that everyone here adds too.. looks simple to me i was just interested in it. ya know giving you a compliment :roll: but i can criticize if you prefer -
[mccode v2] Point & Click a script that everyone here adds too..
Zero-Affect replied to Uridium's topic in Free Modifications
Re: [MOD] Point & Click a script that everyone here adds too.. Interesting modification m8 -
Re: [mccode v2] Fishing Mod Interesting. joint projects are quite fun
-
Re: [mccode v2] Farming interesting modification looks like fun might edit it if i have time later and post
-
Re: Free Starter Pack Okay guys...lemme try and explain again. I only have myself to blame, as the coding of the starter pack was not very good, I've made it slightly better. Basically, sprintf is used to secure the query. Here is an example of a sprintf query, and how to edit it, to ensure you do not get errors. $sql = sprintf("UPDATE `users` SET `money` = `money` + '%d', `crystals` = `crystals` + '%d' WHERE `userid` = ('%u')", 100,500,$ir['userid']); $db->query($sql); Basically, the '%d' is a number. It is the number of crystals / money you want the user to get. At present, %d has not been defined, however, after you get to the center of the query...right after ", you will notice a few numbers and a userid (100,500,$ir['userid']). These define the %d's and the %u in the query. So the money will be +100, crystals +500 and userid $ir['userid']. Now if you did not have crystals for example in your game, you would have to remove the part that says: `crystals` = `crystals` + '%d' but also the bit that says 500, as it defines the crystals. For anyone who didn't understand this, go to http://www.php.net and learn it. It's simple once you know it and contact me if you need more help. nice explanation but you forgot has from your post %s meaning alpha / numberic chars for example $ql = sprintf('UPDATE `users` SET %s = %s + %d WHERE userid = %u', money, money, 100, $userid); $ql = $db->query($ql); %d = defined number %u = undefined number %s = alpha / number chars there are many more options which i have not yet explored but i think that would help money and money are the %s alpha / numeric the 100 is the %d meaning defined because you input it so it's not gunna be anything difference and finally the %u which is $userid in many owners cases is 1 but obviously if its on the game it could mean any number so its undefined hence the %u i hope that helps and im sure i will get some replies on this matter where i may be wrong but im sure im right
-
Re: [mccode v2] Slots Looks like you are falling into exactly the same trap I did. Maybe we should look at your work and look for "noob" mistakes. And yes, that last part was a joke. BTW, the fixes that have been presented - are all wrong. Scoobie snack to the first person that creates the *CORRECT* fix. correct me if im wrong but it works... and the "lets look at your coding for noob mistakes" you forget one main thing there... I AM A NOOB but you own a business and said once "i coded for Microsoft" im assuming your talking about in c+ which one of my mates does for Microsoft. i may be a noob but i can admit i don't know things you don't admit it you just take the pee out of people who are new thats why noone dares post problems on CE anymore because someone has their head up their ass and instead of helping they take the pee... open forum allows me to say whatever i like but im assuming i will be banned or my irc be taken off your server but ill speak my mind unlike all the brown noses who give your butt a good licking.
-
Re: [mccode v2] Slots [me=Nyna]sighs[/me] When you actually understand *exactly* what the problem, please come back and have deliver us your verdict. I am not perfect - far from it, I make more mistakes than you lot put together, and some of my mistakes can cost several hundred thousand, but really, I'm not that overly concerned. Why? a) This code (as all my code is) has been converted from a different environment which has a lot more stability to it than a DBS/MCcodes platform. b) As I have quite clearly stated -- these "mods" are here as examples. If you really want to criticize my work, feel free. I'm sure I can find somebody who cares. In the meantime, congratulations, you are probably the first person to spot one of the basic conversion issues. And no -- that is not sarcastic. you should really care it's your work but i am amazed at that reply i was considering world war III lol afew parts of the reply puzzled me though You have said on several occasions to me and others "always test your codes again and again" now is that a issue on your part like maybe your bipolar or something? i still don't understand how noone else could see it i mean this is upto the 5-6th page of people basically just kissing your butt instead of reading the code. i find it hilarious watching people with the brown noses... this is a good mod just a simple noob mistake no need to pull your hair out about it :-P
-
Re: [mccode v2] Slots i fixed it and stated the fact... but i disagree with Nyna this is a open forum is it not and even you can be criticized not just you criticizing us all the time (which you have done on many many occasions). i don't get why people automatically bow down to you but that is another issue i guess, but in short criticizing is good to a extent it makes you realize where you went wrong on the mod and remember it for next time. this mod basically just goes to show even the "Pro's" make mistakes. i personally like the mod hence me using it but i thought if no-one has posted about the error maybe i should which is my right.
-
[mccode] A better Safer Forum for your members to enjoy
Zero-Affect replied to Uridium's topic in Free Modifications
Re: [mccode] A better Safer Forum for your members to enjoy yes adding a line to register would work. but it would be better to intergate the users table into the forum -
Re: [mccode v2] Hit-List [$10.00] i don't remember lowering the price unless it was 15 n now its 10 it's very simple to install mate it comes with a document explaining how to install it
-
Re: [MCcode V2] Ranks Not really he deserves it, are you telling me that's a act of a adult? no offense but your the only person acting like a child here I must be psychic :)
-
[mccode] A better Safer Forum for your members to enjoy
Zero-Affect replied to Uridium's topic in Free Modifications
Re: [MOD Mcc V1 + V2] A better Safer Forum for your members to enjoy interesting i was meaning that has a option not a rule and the copyrights have stayed intack on my website which isn't using this but actually is the forum lol just simply removed the annoying ads