
athena26
Members-
Posts
195 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
Events
Everything posted by athena26
-
But I have 0 exp and me and everyone else is using 2000 brave but wastes 4000 same for item use , trust me there is a issue there I don't know how you ain't seeing it even when they use donator items so o should lower the crime to int? So what's causing this issue for everyone else ?
-
Nice found it , can you help me fix this issue sim? I'll pay you I'll pay anyone to fix this !
-
How do I do that sim . Willing to pay 10$ to whoever fixes this for me .
-
I used appgeyser that works really well and all my members have installed the app which runs way better than the URL website, I'm waiting on Google to review my application to be released on play store and it allowed me to use PayPal and it let me keep the donation option but Google gets 30% of my donations. After reaching 1million$ for now it's only 15% per donation .
-
I'm using android I never seem to find that bottom, sorry.
-
The item function itemuse.php is fine I've checked everything This is happening on everything ,itemuse, Brave, leveling up, streets, turns , item buy <a href='itemuse.php?ID={$_GET['ID']}'>Use Again</a> | <a href='inventory.php'>Inventory</a> </div></div> "; item_remove($userid, $r['inv_itemid'], 1); } } $h->endpage();
-
Yes it's mccodes and I don't know what triggered this. I've checked the db,global func, everything and everything I see seems fine , however everything going up by 2 in the inventory. function itemtype_dropdown($connection, $ddname = "item_type", $selected = -1) { global $db; $ret = "<select name='$ddname' type='dropdown'>"; $q = $db->query("SELECT * FROM itemtypes ORDER BY itmtypename ASC"); if ($selected == -1) { $first = 0; } else { $first = 1; } while ($r = $db->fetch_row($q)) { $ret .= "\n<option value='{$r['itmtypeid']}'"; if ($selected == $r['itmtypeid'] || $first == 0) { $ret .= " selected='selected'"; $first = 1; } $ret .= ">{$r['itmtypename']}</option>"; } $ret .= "\n</select>"; return $ret; } function item_dropdown($connection, $ddname = "item", $selected = -1) { global $db; $ret = "<select name='$ddname' type='dropdown'>"; $q = $db->query("SELECT * FROM items ORDER BY itmname ASC"); if ($selected == -1) { $first = 0; } else { $first = 1; } while ($r = $db->fetch_row($q)) { $ret .= "\n<option value='{$r['itmid']}'"; if ($selected == $r['itmid'] || $first == 0) { $ret .= " selected='selected'"; $first = 1; } $ret .= ">{$r['itmname']}</option>"; } $ret .= "\n</select>"; return $ret; } function item2_dropdown($connection, $ddname = "item", $selected = -1) { global $db; $ret = "<select name='$ddname' type='dropdown'>"; $q = $db->query("SELECT * FROM items ORDER BY itmname ASC"); if ($selected < 1) { $ret .= "<option value='0' selected='selected'>-- None --</option>"; } else { $ret .= "<option value='0'>-- None --</option>"; } while ($r = $db->fetch_row($q)) { $ret .= "\n<option value='{$r['itmid']}'"; if ($selected == $r['itmid']) { $ret .= " selected='selected'"; $first = 1; } $ret .= ">{$r['itmname']}</opJavaScripttion>"; } $ret .= "\n</select>"; return $ret; } This is the function that I have in globals func.
-
I've been looking everywhere for this error will check the dB class This happened since I changed all MySQL queries to $db->query .
-
Everything in my game going up by 2, item use, leveling up,crime exp, I've check the global func and everything seems fine can anyone help me fix this ?
-
That's what I've used to add my website to play store quick and easy for APK files.
-
I've sorted it hopefully in two days Google will review my application ☺️
-
<br /><br /> <hr width='75%' /> <div style='text-align:center;'> <h4>Mobster of the hour</h4> <table width='75%' class='table' style='text-align:center;' align='center'> <tr> <th>User</th> <th>Kills</th> </tr>"; $check = $db->query('SELECT userid, username, kills FROM users ORDER BY kills DESC LIMIT 1'); if (!$db->num_rows($check)) { echo "<tr><td colspan='2'>There are no users yet!</td></tr>"; } while ($user = $db->fetch_row($check)) { echo " <tr> <td><a href='viewuser.php?u=".$user['userid']."'>".$user['username']."</a></td> <td>".money_formatter($user['kills'], '')."</td> </tr>"; } echo " </table> </div> <hr width='75%' /><br /><br /> Can someone help me with this code when I try add it in explore before <? I get a error
-
How do I add my website into a app, I have a developer account but I don't know how to add the URL could anyone help me or explain how to do this .
-
I've purchased this but only received images and screenshot.
-
Were do i add this lol
-
QUERY ERROR: Column count doesn't match value count at row 1 Query was INSERT INTO vote VALUES(NULL, '', 'http://bbogd.com/vote/gangster-paradise', '', '', '', '1', '1', '', 'money')) I get this error when trying to add a website
-
mccode-v2 Honor Awards - Modified by HarryB
athena26 replied to HarryB's topic in Free Modifications
It's always best to ask before adding it to my website . I like to observe for any errors. -
Yes it works perfectly fine . I didn't add the SQL tables for GTA . Add this to Cron minute $db->query("UPDATE users SET maxGTA=0 WHERE maxGTA > 0"); Then simply add robskill to users stats . -- -- Table structure for table `gta` -- CREATE TABLE `gta` ( `carID` int(11) NOT NULL, `carPRISON` int(11) NOT NULL DEFAULT '0', `carSVALUE` int(11) NOT NULL DEFAULT '0', `carNAME` text NOT NULL, `carPIC` text NOT NULL, `carIQ` decimal(11,6) NOT NULL DEFAULT '0.000000' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `gta` -- INSERT INTO `gta` (`carID`, `carPRISON`, `carSVALUE`, `carNAME`, `carPIC`, `carIQ`) VALUES (1, 1, 1000, 'Acura Integra', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTuP-01Bp7nQNJbVwTqiTnE4Ag709e0ZaXoYw&usqp=CAU', 10.000000), (2, 1, 2500, 'Audi 100 Avant quattro', 'http://www.motor-trade-insider.com/images/audi-100-avant-1984.jpg', 100.000000), (3, 1, 5000, 'White Van', 'https://media.istockphoto.com/photos/blank-truck-ready-for-branding-picture-id157283564?k=6&m=157283564&s=612x612&w=0&h=HVGOqf9Jv7_D2Sm3v-kBgg3yiQLEbtWlTn-YHs6HLqg=', 100.000000), (4, 1, 10000, 'Golf GTi', 'https://www.razaoautomovel.com/wp-content/uploads/2018/05/2018-vw-golf-gti-tcr-concept-1440x960.jpg', 100.000000), (5, 1, 25000, 'Mercedes Benz', 'https://i.pinimg.com/originals/db/33/17/db3317a6390cbd2b81c88baacce1996d.jpg', 100.000000), (6, 1, 50000, 'Porsche Cayenne', 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQAPC504OaE1WucL9-i_kpQzxynLqGSyaA7eA&usqp=CAU', 100.000000), (7, 1, 150000, 'Ferrari sf90', 'https://cdn.motor1.com/images/mgl/0x6J3/s1/ferrari-sf90-stradale.jpg', 100.000000), (8, 1, 350000, 'Bentley', 'https://auto-drive.pt/wp-content/uploads/2020/09/bentley-continental-gt-mulliner-coupe.jpg', 100.000000), (9, 1, 350000, 'Bugatti', 'https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/14bugatti-divo-99leadgallery-1535035005.jpg?crop=0.822xw:1.00xh;0.109xw,0&resize=640:*', 100.000000), (10, 1, 500000, 'Lamborghini', 'https://i.pinimg.com/originals/e7/d2/9a/e7d29a41124aeeb702f8af34b8bdd989.jpg', 100.000000); -- -- Indexes for dumped tables -- -- -- Indexes for table `gta` -- ALTER TABLE `gta` ADD PRIMARY KEY (`carID`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `gta` -- ALTER TABLE `gta` MODIFY `carID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; COMMIT; ALTER TABLE `userstats` ADD `robskill` decimal(11,6) NOT NULL default '0.000000'
-
mccode-v2 Honor Awards - Modified by HarryB
athena26 replied to HarryB's topic in Free Modifications
Well I only ask because I'm interested The files are fine only issue honorawards when I press anything there it refreshes. -
mccode-v2 Honor Awards - Modified by HarryB
athena26 replied to HarryB's topic in Free Modifications
Okay thanks -
mccode-v2 Honor Awards - Modified by HarryB
athena26 replied to HarryB's topic in Free Modifications
Don't we need a Cron for this ? -
The armoury Cron doesn't work .
-
I wanted the users avatar to show in jail and hospital . User display picture. Were it shows there name in jail.php or hospital to show user display pic + name . This is my jail.php <?php include "globals.php";print "<div class='generalinfo_txt'><div><img src='images/info_left.jpg' alt='' /></div><div class='info_mid'><h2 style='padding-top:10px;'> Jail</h2></div><div><img src='images/info_right.jpg' alt='' /></div> </div><div class='generalinfo_simple'><br> <br><br><table class='tablee'><tr><td><center><img src='/images/jail.jpg' /></td></tr></table><br><table width='75%' class=\"table\" border=\"0\" cellspacing=\"1\"><tr bgcolor=gray><th>Name</th> <th>Level</th> <th>Time</th><th>Reason</th> <th>Actions</th></tr>";$q=$db->query("SELECT u.*,c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.jail > 0 ORDER BY u.jail DESC");while($r=$db->fetch_row($q)){print "\n<tr><td>{$r['gangPREFIX']} <a href='viewuser.php?u={$r['userid']}'>{$r['username']}</a> [{$r['userid']}]</td><td>{$r['level']}</td><td>{$r['jail']} minutes</td><td>{$r['jail_reason']}</td> <td>[<a href='jailbust.php?ID={$r['userid']}'>Bust</a>][<a href='jailbail.php?ID={$r['userid']}'>Bail</a>]</td></tr>";}print "</table></div><div><img src='images/generalinfo_btm.jpg' alt='' /></div><br></div></div></div></div></div> ";$h->endpage();?> I've tried adding this if ($r['user_level'] == 2) {$user = "<font color='red'>{$r['username']}</font>";} else if ($r['user_level'] == 3) {$user = "<font color='blue'>{$r['username']}</font>";} else if ($r['user_level'] == 4) {$user = "<font color='green'>{$r['username']}</font>";} else if ($r['user_level'] == 5) {$user = "<font color='pink'>{$r['username']}</font>";} else if ($r['user_level'] == 1) {$user = "<font color='white'>{$r['username']}</font>";} else if ($r['donatordays']) {$user = "<font color='#008B8B'>{$r['username']}</font>";} else {$user = "{$r['username']}";}if ($ir['display_pic']) { $display = "<img src='{$r['display_pic']}' width='30' height='30'>"; } else { $display = "<img src='{$gender}' width='30' height='30'>"; } But I get a error is my code of adding wrong ?