Z?v??
Members-
Posts
248 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Z?v??
-
This is something i've never really thought about much so I thought i'd ask about it on here. Heres an example of crime formulas i'll be using... ((WILL*0.8)/2.5)+(LEVEL/4) Can someone give me a thorough explanation of each part of that formula. And maybe explain how to make crimes harder or easier from that formula.
-
Re: [mccode] Black Jack It's for v1.
-
Re: Register Page Ok, thanks deathstar. :-)
-
Re: Register Page What are you talkin about? lol
-
Re: Register Page Show me the complete code with your changes in it. Cause I don't understand whats wrong in that.
-
Re: Register Page Whats wrong with that line? It all looks good to me. :|
-
"; $ip = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; if(file_exists('ipbans/'.$ip)) { die("Your IP has been banned, there is no way around this.
-
Re: Credit Gym I know, I said that. I just editied the regular gym.php
-
This was very simple to make but someone might find this useful. I just edited the regular gym.php. This is called creditgym.php but if you want to change it to crystals or diamonds or whatever, just change all the instances of credits in the code. <?php /*---------------------------------------------------- -- Mono Country v1.0 BETA -- A product of DBS-entertainment -- Copyright held 2005 by Dabomstew -- INDEX.php -- Edited by Zaver -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); if ( $ir['validated'] == 0 ) { header("Location: macro.php?ref=".urlencode($_SERVER['PHP_SELF'])); exit; } if ( $ir['gympass'] == 0 ) { header("Location: gympass.php?ref=".urlencode($_SERVER['PHP_SELF'])); exit; } $h = new headers; $h->startheaders(); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); if($ir['validated'] < 1) { die("You need to go validate.Please Click Here To Validate"); } $_GET['times']= abs((int) $_GET['times']); if($ir['validated'] < 1) { die(" You need to go validate.
-
Re: Personal Detals [free][V2] No, he really means resister :?
-
Re: Need something to code Well, if he has a newer game, more than likely, he doesn't have quite 100. But anyways, I didn't know how easy he was wanting. :| I was just trying to help out and give him some ideas lol.
-
Re: Need something to code Try making a user list that only the owner can view that will show the info of every field in the users table. It shouldn't be too hard and it could be useful to some people.
-
Re: Item Picture Help. I fixed it. It should have been.... instead of...
-
Re: Item Picture Help. I don't think it's verifying which which item to display the picture for. :?
-
i'm adding item pictures into my game and i added this... where i want the item picture to show up and in my items table, i added an itmPIC field varchar (255) but when i enter the url of the pic into that field for the item, the picture doesnt show up on game. It shows where the picture should show up, but the actual picture doesn't display. Any ideas?
-
Re: Column Count Error. Thank bro, worked perfect. +1
-
I have added a new field to my items table and now when I got to create an item in my staff panel (on v2) it gives me the QUERY ERROR: Column count doesn't match value count at row 1 I know I have to add something into the staff_items.php file but I don't know exactly how to do it. I believe this is the part of staff_items.php that needs edited... $m=$db->query("INSERT INTO items VALUES('',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},$itmbuy, '{$_POST['effect1on']}', '$efx1', '{$_POST['effect2on']}', '$efx2', '{$_POST['effect3on']}', '$efx3', $weapon, $armor)"); print "The {$_POST['itmname']} Item was added to the game."; stafflog_add("Created item {$_POST['itmname']}");
-
Re: [mccode] Kicking Gang Members At War Does anyone care to re-write this to work with v2?
-
Re: gym pass I haven't ever made my own mod but if I were to spend my own personal time making a mod, I would want money for it. Just show some respect to the person that made that mod and buy it from them. It's not an expensive mod by any means.
-
Re: My $5 Annoucement Mod - FREE! I've installed this onto my game and I like it. +1 8-)
-
Re: Adding items to crimes. Do you have v1 or v2 codes? Because it's built into the mccodes v2, i'm not sure if it is with v1 or not.
-
Re: Adding items to crimes. Nevermind, My brain just came back. I know how its done now. :mrgreen:
-
This may be a dumb question but how do you add items to certain crimes. For an example, you do the crime "Hijack A Car." So when you succeed, instead of gaining money, you gain a car item. My mind when totally blank when I was trying to do this. :-(
-
Can anyone do me a favor and modify my mailbox.php? If someone deletes a message, it also deletes it out of the mail logs. :-(
-
Re: battletent - only one npc showing at a time Thanks, that helped me out alot too. :-)