-
Posts
2,921 -
Joined
-
Last visited
-
Days Won
48
Content Type
Profiles
Forums
Events
Everything posted by KyleMassacre
-
So with the new theme and everything, you think you can get the notification bar to light up similar to the old theme? I don't use the pesky popup box and its a little not so obvious you get a message
-
Well thats good to know, coming right up
-
Weekly Lottery [NWE]
KyleMassacre replied to KyleMassacre's topic in Free Modules (Requests or Offers)
I just submitted this module for an update. What I did was basically make it work ;) Minor Bug fixes A problem with purchasing the exact limit of tickets, it was off by 1 purchase. i.e: Max tickets was 20 you were only able to buy 19. Fixed a couple of variables [*]Upgraded the config to the newest standard [*]Optimized the cron and removed the "ORDER BY rand()" -
I just want to remind people as well that I still need to update this for the error and add in some stuff in the xml file. ill take a look now and see what I can do while on my phone. ***Edit*** Submitted. I there error it was giving should be fixed, I edited the xml to accommodate for the delete user module and added an image_upload tag as well. I didn't add an image_format so I hope that's not mandatory cause I don't think that the image type really matters here if it is mandatory ill change it
-
Oh ok thats good to know and good luck with your venture. I know its a pretty tough world out there
-
Can you maybe give us a list of features that you have that others dont? Just by looking at the site I cant see any features and I currently do not have a game to add. Do you have incentive voting cause I know a lot of game players would like that? How do you track votes for multies, IP? Right now thats all I have ;)
-
It runs off a timestamp, and if you have rated the player within 24 hours then it wont let you anymore and if it has been longer than 24 hours it deletes your record. I could have done a cron to just truncate the table but its imo pointless when the record can be deleted on a per user basis
-
I LOVE (you see that alain) my Macs. I have a 13" macbook which is the last version before they made "Pro" and its still kicken and a 27" iMac which I also love but mostly use my macbook. And Dayo if you did wanna go back to Win Os may I suggest Parallels? I think there is a problem with Lion and it may be fixed but if you decide to go with it and what not look into that. I used to have Parallels a while back and it was great and that way you get the best of both worlds
-
So much better Dave thank you
-
I think the new theme looks great and I think it kinda fits and its pretty hip. My only issue with it is the the bbcode tags like sql, code, etc don't show up. I was meaning to message dave about it earlier but slipped my mind till you just now posted
-
I would like to add something here too, and ill start from the top and work my way down. For your sql your adding besides it being in users table your using int 11, how big of numbers can you possibly need, 2 bill? Since you are posting this in V2 and mysql_ is going to be depreciated you can either do mysqli_query($c,"now your query"); or use $db-> query("you query here"); notice no connection var? This way since there is classes on v2 it gives people the option to switch back and forth between mysql and mysqli, in which the ladder is a bit safer and won't depreciate for a long time coming. For your functions you are adding you can get rid of the global vars your not using like for example your work () you can get rid of $c and $h. $c is your connection var which is not really needed here and $h is your header var which is commonly used for $h-endpage (), a die () replacement. and for both functions if you use the $db class you would have to add that to your global. Thats pretty much it, and I'm not nit-picking so don't take it that way I'm just letting you know for future reference cause just by looking at it this should still work. Good work and keep them coming
-
well I don't see anything wrong with your post :p
-
Sniko beat me :o maybe I should refresh before eh?
-
why not just post the code here instead of directing us to your site then directing us to github? One thing I noticed is you said on your site to include some sort of pdo class thing in the config file, why? I looked over the code and its still filled with mysql_query(), that makes no sense to me cause you only use your "$dbh" or whatever an few times?
-
What plans do you guys use for them if you don't mind me asking or even pm me with a response. I'm just confused on the data plan I may need cause I don't want to pay for what I don't/won't need but also I wanna plan for a future too you know? Oops: In response to stablehost
-
I actually prefer full site. anytime I get redirected to a mobile site I just force to be redirected back but thank you for thinking of me sniko. Your one to know I'm ALWAYS on my phone haha
-
Sorry to dig up a 6 mo. old thread but I have used these guys and wished I seen this first. I am actually dealing with them for one of my servers right now and their service is far below par. At first when I would submit a ticket usually I would get a response within 12 hours which IMHO is a little slow for paid hosting but I guess they don't have 24/7 support, oh well they would fix it. For the past 3 weeks though every support ticket I have placed I get no response and check back up on it in my client area and guess what? My ticket is deleted, and my domain is still not accessible. It appears they may have changed their nameservers and don't want to give me their new one or allow me to add my own nameserver. I can't access WHM/Cpanel or anything and I guess they like to wait till their 30 day money back guarantee is out to stop providing support. In a nutshell stay away from these guys.
-
yeah I'm all about having more than just a single green bar :(
-
So, I was wondering if anyone would like an expansion of this, like more features to player classes. I can do items, properties, and even gangs.
-
maybe when I'm done with my project I can make something for this but no promises :p
-
like I said before, sounds like a nice little modification to make for easier bug tracking
-
well, when you put it like that for sure the top snippet is by far easier but in all honesty I wouldn't have done it that way either :p on another note I don't do any sort of javascript so ill chalk it up as a +1 for you. and like I said I found in my ventures no real use for it but that neither here nor there and thanks for the lesson ill try to remember it Also original post is updated to add the userstats in
-
Good lookin out Alan. I really can't stand heredoc and nowdock so anytime I see them I remove them, I'm sure somewhere they serve a good purpose but just my preference and style to end my strings etc one by one, plus it makes things easier to read with the syntax highlighting of a text editor
-
hmm good question. I think there is just a table for it and that's it. sounds like a good mod idea to reply to bugs and close them
-
It seems that I forgot to add the userstats insert upon registering, im at work right now so i cant access really anything here so my bad, its a rookie mistake but basically you need to change the insert query for userstats to the variables listed above: $db->query("insert into usertats values ($i,$guard,$iq, $labor,$agility)"); Something like that, the values may not be in the correct order so pay attention ;)