
Samurai Legend
Members-
Posts
483 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Forums
Events
Everything posted by Samurai Legend
-
I was doing research on how to unmask private numbers and I only came across one article where someone stated you can do it using Raspberry Pi My problem here is I have no idea on where to start and I am receiving calls on my mobile phone and not on a landline. However, I was thinking if I can't connect my phone to the Raspberry Pi. I'll just redirect the call to a landline where the Raspberry Pi can log the details. If anyone has information on how to do what I require. I will reward you.
-
Error fix, there was an error with the cPanel. There was no issue with the files. Thank you all!
-
Hello, on my offline development environment I receive no errors. However, on my online environment it throws an error. Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /home/shahgyzl/samuraiconflict.com/globals_nonauth.php on line 12 Fatal error: Uncaught Error: Call to undefined function mysqli_report() in /home///class/class_db_mysqli.php:18 Stack trace: #0 /home/shahgyzl//class/class_db_mysqli.php(44): database->__construct() #1 /home/shahgyzl//class/class_db_mysqli.php(100): database::getInstance() #2 /home///globals_nonauth.php(34): require('/home//...') #3 /home/shahgyzl//login.php(4): require_once('/home//...') #4 {main} thrown in /home///class/class_db_mysqli.php on line 18 I don't know what' the problem? Okay, I got the second error fix however now it just shows Warning: session_regenerate_id(): Cannot regenerate session id - session is not active in /home///globals_nonauth.php on line 12 <?php if (strpos($_SERVER['PHP_SELF'], "globals_nonauth.php") !== false) { exit; } session_name('MCCSID'); @session_start(); if (!isset($_SESSION['started'])) { session_regenerate_id(); $_SESSION['started'] = true; } ob_start(); if (function_exists("get_magic_quotes_gpc") == false) { function get_magic_quotes_gpc() { return 0; } }
-
Hello, I am in need of a content writer for the following below (Japanese, Samurai Themed): 3 Cities with a description, price & minimum level; there is already 7 cities created so the other 7 will need to to be adjusted accordingly to be tailored to real life. (e.g. city x is known to be cheap/poor therefore price & level will be lower.) 8 shops with a name and description; there is already 12 created. Creating content for this will be easy In total there will be 20 shops in total after the 8 is added. Within the 20 shops there will need to be items added accordingly to each shop. I will explain the items below. Items - Escape/Medical: I would like 1 of each in every other city. (e.g. Shop 1 will have Escape/Medical, Shop 2 nothing, Shop 3 will have Escape/Medical and so on). (20 in total) Weapons: Name, desc, item buy price, item sell price, power of item. (2 of each in each city so in total 40 weapons). Amour: Name, desc, item buy price, item sell price, defense of item. (2 of each in each city so in total 40 armour). In total 100 items. Houses - 30 houses with a name, price, min level, tax price; deductions will be every day so price accordingly & max mood (will power). This will need to be adjusted for whatever level they can buy at. I don't want gym stats to be all over the place. Crimes - I already have 50 crimes all I need is for adjustments so the economy is not all over the place. As you will be creating the content you should plan accordingly on payout, exp, jail times and etc. In conclusion, you will be planning on how the games economy will be. I want crimes to be payout not much but enough so users can repeatedly do crimes to buy whatever they require. Please email on [email protected] with your price. Please no time wasters. English will need to be on a professional standard.
-
- 1
-
-
Weapons & Armour (Samurai ERA)
Samurai Legend replied to Samurai Legend's topic in General Discussion
I love you man, this is exactly what I needed. Can't believe I didn't come across WikiPedia -
Hello, I've been doing research about information revolving weapons and armours in the Samurai ERA. Every time I research about the items I always end up with the same names and not much information. I need at least 15 weapons and 15 amour names. If anyone can help me with a link that would be amazing. As this is all I require in-order to release my game! Thank you all 🙂
-
Need to replace my cron_minute with a timestamp
Samurai Legend replied to Samurai Legend's topic in Modification Support
Thank you everyone, who have commented and helped! I will update yous once I implement these into my game. -
Here I have three tables. Adding x to the market, removing x to the market and buying x at the market [SQL]CREATE TABLE `marketaddlogs` ( `malID` int(11) NOT NULL AUTO_INCREMENT, `malUID` int(11) NOT NULL, `malCAT` enum('item','coins','steps','gems') NOT NULL DEFAULT 'item', `malUSER` int(11) NOT NULL, `malIP` varchar(255) NOT NULL DEFAULT '', `malITEM` int(11) NOT NULL, `malQTY` int(11) NOT NULL, `malPRICE` int(11) NOT NULL, `malCURRENCY` enum('money','coins','steps','gems') NOT NULL DEFAULT 'money', `malTIME` int(11) NOT NULL, PRIMARY KEY (`malID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE `marketremovelogs` ( `mlrID` int(11) NOT NULL AUTO_INCREMENT, `mlrUID` int(11) NOT NULL, `mlrCAT` enum('item','coins','steps','gems') NOT NULL DEFAULT 'item', `mlrUSER` int(11) NOT NULL, `mlrIP` varchar(255) NOT NULL DEFAULT '', `mlrITEM` int(11) NOT NULL, `mlrQTY` int(11) NOT NULL, `mlrTIME` int(11) NOT NULL, PRIMARY KEY (`mlrID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE `marketbuylogs` ( `mblID` int(11) NOT NULL AUTO_INCREMENT, `mblUID` int(11) NOT NULL, `mblCAT` enum('item','coins','steps','gems') NOT NULL DEFAULT 'item', `mblBUYER` int(11) NOT NULL, `mblSELLER` int(11) NOT NULL, `mblIPBUYER` varchar(255) NOT NULL, `mblIPSELLER` varchar(255) NOT NULL DEFAULT '', `mblITEM` int(11) NOT NULL, `mblQTY` int(11) NOT NULL, `mblPRICE` int(11) NOT NULL, `mblCURRENCY` enum('money','coins','steps','gems') NOT NULL DEFAULT 'money', `mblTIME` int(11) NOT NULL, PRIMARY KEY (`mblID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; [/SQL] Adding in the Market - [php] $m = $db->insert_id(); $db->query( "INSERT INTO `marketaddlogs` VALUES (NULL, $m, 'item', $userid, '{$ir['lastip']}', {$r['inv_itemid']}, {$_POST['QTY']}, {$_POST['price']}, '{$_POST['currency']}', " . time() . ")"); [/php] Buying in the Market - [php] $q2 = $db->query(" SELECT * FROM `marketaddlogs` WHERE `malID` = {$_GET['ID']}"); $info = $db->fetch_row($q2); $q3 = $db->query(" SELECT `lastip` FROM `users` WHERE `userid` = {$r['imADDER']}"); $ip = $db->fetch_row($q3); $db->query( "INSERT INTO `marketbuylogs` VALUES (NULL, {$info['malID']}, 'item', $userid, {$r['imADDER']}, '{$ir['lastip']}', '{$ip['lastip']}', {$r['imITEM']}, {$r['imQTY']}, {$final_price}, 'money', " . time() . ")"); [/php] Removing in the Market - [php] SELECT * FROM `marketaddlogs` WHERE `malUID` = {$_GET['ID']}"); $info = $db->fetch_row($q2); $db->query( "INSERT INTO `marketremovelogs` VALUES (NULL, {$info['malID']}, 'item', $userid, '{$ir['lastip']}', {$r['imITEM']}, {$info['malQTY']}, " . time() . ")"); [/php] Staff Logs , I need to join the three tables together and get good amount of information e.g. what is being sold, removed, added. If there is an IP buying etc. Now I have an error join two tables. Please someone help QUERY ERROR: Unknown column 'mrl.mrlUID' in 'on clause' Query was SELECT * FROM `marketaddlogs` AS `mal` JOIN `marketremovelogs` AS `mrl` ON `mal`.`malUID` = `mrl`.`mrlUID` WHERE `mal`.`malCAT` = 'item' ORDER BY `malTIME` DESC LIMIT 0, 100 [php] function view_item_market_logs() { global $db, $ir, $c, $h, $userid; echo "<h3>Item Market Logs</h3><hr />"; if (!isset($_GET['st'])) { $_GET['st'] = 0; } $st = abs(intval($_GET['st'])); $app = 100; $q = $db->query("SELECT COUNT(`malID`) FROM `marketaddlogs`"); $itemmarket = $db->fetch_single($q); $db->free_result($q); if ($itemmarket == 0) { ?>There hasn't been any processes for the item market.<?php return; } $pages = ceil($itemmarket / $app); echo 'Pages: '; for ($i = 1; $i <= $pages; $i++) { $s = ($i - 1) * $app; echo ($s == $st) ? '<b>' . $i . '</b> ' : '<a href="staff_logs.php?action=itemmarketlogs&st=' . $s . '">' . $i . '</a> '; echo ($i % 25 == 0) ? '<br />' : ''; } echo " <br /> <table width='100%' cellspacing='1' cellpadding='1' class='table'> <tr> <th>Transcript</th> </tr> "; $q = $db->query( "SELECT * FROM `marketaddlogs` AS `mal` JOIN `marketremovelogs` AS `mrl` ON `mal`.`malUID` = `mrl`.`mrlUID` WHERE `mal`.`malCAT` = 'item' ORDER BY `malTIME` DESC LIMIT $st, $app"); while ($r = $db->fetch_row($q)) { echo " <tr> <td>" . date('F j Y, g:i:s a', $r['malTIME']) . ": " . username($r['malUSER']) . " added {$r['malITEM']} x{$r['malQTY']} to the Item Market for the price of {$r['malPRICE']} ({$r['malCURRENCY']}). </tr> "; } $db->free_result($q); echo " </table> <br /> Pages: "; for ($i = 1; $i <= $pages; $i++) { $s = ($i - 1) * $app; echo ($s == $st) ? '<b>' . $i . '</b> ' : '<a href="staff_logs.php?action=itemmarketlogs&st=' . $s . '">' . $i . '</a> '; echo ($i % 25 == 0) ? '<br />' : ''; } $mypage = floor($_GET['st'] / 100) + 1; stafflog_add("Looked at the Item Market Logs (Page $mypage)"); } [/php] Got the error fixed. Now it shows ddd May 17 2021, 4:24:23 am: Shades http://samuraiconflict.test/images/staff.gif added 1 x2 to the Item Market for the price of 2 (money). May 17 2021, 4:26:55 am: N/A removed x from the Item Market How do I not make it show the item removed bit when there isn't no data? If anyone can help me improve to show it in a better format it will be a big help! Why is it when I buy something again from the same listing it comes up as a new row?
-
The markets are much complicated, e.g. users can add 1000 coins or items etc, users have the options to buy x coins, items etc from the 1000 coins. Now I want all the logs to link
-
I have Item Market, Coin Market, Steps Market and Gem Market. I need the best possible advice on how to log when users add, remove and sell their stuff and log it correctly. I know how to code but I need the best possible concept. I want the logs to be in one table. Thank you.
-
Seacrhing Area Script Final Mod for MCCV2
Samurai Legend replied to Uridium's topic in Free Modifications
What is the mod? I may be able to create you one. Also, I don't think you should add every mods into your game. You got to keep balance. -
@athena26 - you are a legend! Thank you so much, I now fully understand the concept of this formula. I really appreciate the help.
-
Good morning/afternoon/evening everyone! Hope everyone is well. I just wanted to know how the crime formula works and the understanding of it. If anyone cares to shine some light please do! Crime forumla - ((WILL*0.85)/1)+(LEVEL/5)
-
@big_mike- is there any places you recommend to advertise?
-
[mccode v2] Flash Arcade System with High Scores [$100]
Samurai Legend replied to seanybob's topic in Paid Modifications
lol -
Has anyone used Instagram, Facebook or any other ways for advertising? What is the best possible way of advertising your site. I know word of mouth is the best form of advertisement but without the users in the first place it won't be possible. I believe advertising your site is the heart of running a game. The more people playing, will benefit me and users too as they will have more of a competition and they will be able to interact more. Having the same 23 people playing your game daily is good but I believe users will want to meet more people within the game. So please, let me know what is the best way of advertising your game.
-
Hello all! Hope everyone is well and is all doing good. I am soon to be releasing my game and I was wondering what is the best way to attract users to register and play the game. Best form of advertisement & price of advertisement & estimated users to register through advertisement. Thank you all, Samurai Legend.
-
I’ll send the files over to you shortly thank you @Dayo!
-
Good morning/afternoon/evening people! I have a template for sale. Comes with 8 images, coded with html & css as seen below. Bidding starts from $30.
-
Good morning, Thank you for the feedback & help! @urbanmafia@Sim @Magictallguy I have made the font colour of the Dojo EXP gain to the standard colour of the game and made it bold so it is more easier to view. I have also, made when a user that has not logged in before show the correct date/time of when they have logged in. As for the template, it was gifted to me by a user called @Florian_ when I first released Samurai Assault (My game back then). So, I was not aware the CSS has been copy & pasted instead of the bootstrap library being used. I will need guidance from the community on how to resolve this issue so my HTML/CSS is more effiecent with the browser. If anyone could help me please reply or give me a PM thank you. As for the mobile layout, I have realised the issue however, I also don't know how to resolve this issue. Once again if anyone can help out please reach out to me! Thank you. The SSL error, I can't seem to replicate the error. Please send me a PM on how you got on to the page please. @urbanmafia I will also stop using <center><font> etc tags from now and start using I believe <span>? I may be keen on partnering up with someone who is willing to generate an additional income. PM me if you are interested. This game isn’t your usual Mafia game. It’s different from the crowd and there’s an audience for this genre of game. When I first had this game open in 2010. I was generating around £1,000 - £1,500 a month. I have majority of the game planned. I just need someone who is willing to put the work in and make it happen. My wife is also a content writer, her imagination is out of this world and her writing skills are out of this world. She graduated In University College London. One of the best Unis in the world! If someone wants to part of this solid team hit me up!
-
SAMURAI CONFLICT Hello all, I have been working on Samurai Conflict over the year. I am nearly done with the game. Just have to add in few more modifications and update a few more. There is currently no content e.g. shops, houses etc. I will be working on a story line and will have a plan soon on how the games economy will be maintained. I just need advice what is best to do at the moment and what your suggestions are e.g. add/remove this feature; this is a good strategy in order to maintain the game. There are many missing links or broken pages. (Due to be fixed or added.) However, if you find anything major please private message me! Click here to access the game. Please feel free to sign up and let me know how it is! Thank you.
-
-
He smoked a splif. Got fried, and his brain started to work wonders.
-
@ags_cs4- Lmao, I remember you. I got confused as when I went on your portfolio I was thinking you as PHPKiller. Thanks man I appreciate the love.