stevenrfc
Members-
Posts
97 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by stevenrfc
-
Got another slight problem here. When i had the old item market i had put some items on the market, and when i had replaced it with the new item market that Ian gave me, i removed the old items from the market down into my inventory and now i can view my inventory. :/ "Elite Conflict - Critical Error A critical error has occurred, and page execution has stopped. Below are the details: PHP Warning: Cannot use a scalar value as an array (2) Action taken: Line executed: /home1/eliteco3/public_html/Mods/inventory.php:35 "
-
ASP.NET - Capable of creating a game engine?
stevenrfc replied to stevenrfc's topic in Other Programming
That sounds pretty good :) -
Thank you will do :)
-
Thank you, You've been great help. And cleared up the issues very quickly :) Much appreciated!
-
ASP.NET - Capable of creating a game engine?
stevenrfc replied to stevenrfc's topic in Other Programming
Oh i see :) Ah, Would you choose it over PHP? -
ASP.NET - Capable of creating a game engine?
stevenrfc replied to stevenrfc's topic in Other Programming
Ah okay, thank you. Would it be worth it? Or should i just stick to PHP? -
Hello, In august I will be doing a course at college that consists of Web development and Content Creation. One of the things i will be learning will be ASP.NET and i was wondering, Is it possible to create a browser based game engine using ASP.NET ?? Thank you.
-
Ah, thank you very much. I will get do that straight away
-
Thank you :) Yeah i have 2 support tickets up at the moment.
-
Probably the smartest idea But i didn't think redux would be rubbish.
-
Yes mate I've got the latest verison. :/ Its honestly ridiculous. Check this here are all the other problems too. (Please note that i havent edited any of this code, its what i got when i bought it) *Jobs - I cant see what title i am. - I can't add ranks via staff panel - I click promote and i can get promoted even though theres nothing t get promoted too and i can do this as much times as possible. *Item markets - When i add items it always adds as the second currency. - I cannot buy any items even though i have more than plenty to purchase the item. *Creating Users - I cant create users "A Critical Error has occurred, and this page cannot be displayed. Please try again later. Query failed *Adding forums - I can't seem to add forums. *Adding crimes - It works now and then, most of the time i have to put everything in, put crystals, money reward too then edit it in PMA. *Adding battle bots - Can't seem to do this either. *Polls are broke - Just doesnt work. My friend has a slightly older version of redux and mines is the most updated, yet mines is the most buggy... I cant express how disappointed i am.
-
No worries :P
-
*I expected. Dont worry I'm not waiting on it ;) thats what i was saying it my post
-
Lol no need to apologise, if anyone its them. V1 is probably less buggy. This is really put me off v3 and im sure other people can say the same :/
-
Okay I'll shove on another one, lmao Thanks I'll try that if they dont reply :)
-
Oh i wouldnt know im new to php, lmao but im trying to learn on PHP academy :P Seriously? Thats probably why it says i cant purchase items of the market. Its really starting to Look like i paid $120 for half of a game engine. :|
-
Yeah I've tried the support ticket, i have another problem that im trying to fix atm too. They took 9 days for the first reply. Redux is full of problems and what makes me more annoyed is that the support system is just as bad. Redux would be much better if it actually does whats on the tin. Theres problems everywhere you go. I was going to buy v3 but this is just put me off lmao * */ if (!defined($_CONFIG['define_code'])) { echo 'This file cannot be accessed directly.'; exit; } $_GET['ID'] = (isset($_GET['ID']) && is_numeric($_GET['ID'])) ? abs(intval($_GET['ID'])) : ''; $_GET['price'] = (isset($_GET['price']) && is_numeric($_GET['price'])) ? abs(intval($_GET['price'])) : ''; $_GET['QTY'] = (isset($_GET['QTY']) && is_numeric($_GET['QTY'])) ? abs(intval($_GET['QTY'])) : ''; $_GET['currency'] = (isset($_GET['currency']) && in_array($_GET['currency'], array('main', 'second'))) ? $_GET['currency'] : 'main'; if ($_GET['price'] && $_GET['QTY'] && $_GET['ID']) { $q = $db->query( "SELECT iv.`inv_qty`, `inv_itemid`, `inv_id`, i.`itmname` FROM inventory iv LEFT JOIN items i ON iv.inv_itemid=i.itmid WHERE inv_id={$_GET['ID']} and inv_userid=$userid"); if ($db->num_rows($q) == 0) { echo "Invalid Item ID"; } else { $r = $db->fetch_row($q); if ($r['inv_qty'] < $_GET['QTY']) { echo 'You do not have enough of this item.'; $h->endpage(); exit; } $checkq = $db->query( 'SELECT `imID` FROM `itemmarket` WHERE `imITEM` = ' . $r['inv_itemid'] . ' AND `imPRICE` = "' . $_GET['price'] . '" AND `imADDER` = ' . $userid . ' AND `imCURRENCY` = "' . $_GET['currency'] . '"'); if ($db->num_rows($checkq)) { $cqty = $db->fetch_row($checkq); $query = sprintf( 'UPDATE `itemmarket` SET imQTY = imQTY + %u WHERE imID = %u', $_GET['QTY'], $cqty['imID']); $db->query($query); } else { $db->query( "INSERT INTO itemmarket VALUES ('','{$r['inv_itemid']}',$userid,{$_GET['price']}, '{$_GET['currency']}', '{$_GET['QTY']}')"); } item_remove($userid, $r['inv_itemid'], $_GET['QTY']); $db->query( "INSERT INTO imarketaddlogs VALUES ( '', {$r['inv_itemid']}, {$_GET['price']}, {$r['inv_id']}, $userid, unix_timestamp(), '{$ir['username']} added {$r['itmname']} x{$_GET['QTY']} to the itemmarket for {$_GET['price']} {$_GET['currency']}')"); echo "Item added to market."; } } else { if (empty($_GET['ID'])) { echo 'A error occured, please go back and try again.'; die($h->endpage()); } $q = $db->query( "SELECT `inv_id` FROM `inventory` WHERE `inv_id` = {$_GET['ID']} AND `inv_userid` = $userid"); if ($db->num_rows($q) == 0) { echo 'Invalid Item ID'; } else { echo ' Adding an item to the item market... <form action="index.php" method="get"> ' . gen_url('imadd', 'hidden') . ' <input type="hidden" name="ID" value="' . $_GET['ID'] . '" /> <br> Quantity: <input type="text" name="QTY" value=""> <br> Price: <input type="text" name="price" value="0" /> <br> <select name="currency" type="dropdown"> <option value="main">' . $set['main_currency'] . '</option> <option value="second">' . $set['second_currency'] . '</option> </select> <br /> <input type="submit" value="Add" /> </form> '; } } $h->endpage();
-
Hello :) When i add an item to the item market no matter what currency i select it always adds as the second currency which is Gold bars. imadd.php echo ' Adding an item to the item market... <form action="index.php" method="get"> ' . gen_url('imadd', 'hidden') . ' <input type="hidden" name="ID" value="' . $_GET['ID'] . '" /> <br> Quantity: <input type="text" name="QTY" value=""> <br> Price: <input type="text" name="price" value="0" /> <br> <select name="currency" type="dropdown"> <option value="main">' . $set['main_currency'] . '</option> <option value="second">' . $set['second_currency'] . '</option> </select> <br /> <input type="submit" value="Add" /> </form> '; I don't get it, it says for the first option the value is main, but it still adds it as the second currency instead of money. Also when i try to buy them it says "Error, you do not have the funds to buy this item. > Back" Even when i clearly have more than enough money and bars to buy the item. Does anyone know what the problem is? Thank you.
-
If you asked this company to code the layout for you then why are you asking us for help to code it?
-
Could you not just put it in an echo? echo '<a href="link"><img src="imagepath"></a><br /> etc..'; ?? I think im confused in what you are trying to ask lol. O.o Also a quick off topic question, Why is that wise crime template on a web design company? I hope you aren't trying to sell it or pass it on as your own work.
-
Due to previous comments I've realised that it needs a little more time before release. So it will be released 2 weeks from now. :) Sorry
-
@ David Lmao xD Thank you for pointing that out :P
-
Ah i see, what game looks similar to it? I will try my best to make it different. Thanks for the reply And Thanks Djkanna :P
-
Well instead of brave it works with Fear, basically brave but reversed, i think it gives it a nice feel. Conflict ranks, the more conflict you cause the more conflict exp you get. (Its only tied into crimes atm, but im going to add it to training and gang activities) And emotions, You can send emotions, which sends events to their events box, so you can show them how you feel about them. Which will change for different seasons, for eg... Christmas, you can throw snowballs. " it still looks like a normal mccodes game with a different layout" I agree with you, atm thats exactly what it is. But im making small changes here and there to try and get out of the mccode look and feel if you know what i mean. Theres alot more to be added, as its only at the beta stage, i have far loads more ideas which i will begin adding when i get better at php (im a complete noob atm, just started learning) One idea is, When the games fully released, there will Classes that you can choose: The assassin, The Entreprenuer and the Thief. Each one of the classes come with their own perks, missons and awards as you level. I see where you're coming from alot of games have the mccode look and feel, its really hard to get out of especially when you have been working alone for 3 months. Lmao I've mostly been working on the layout but i will definetly be adding new content for the full release :)
-
Thank you :)