-
Posts
2,210 -
Joined
-
Last visited
-
Days Won
47
Content Type
Profiles
Forums
Events
Everything posted by sniko
-
His arms look like he can support that... ;) on topic: Nice DJK
-
NWE Free and Dev 1.1.3 released! Use it as will now!
sniko replied to a_bertrand's topic in New Worlds Engine
I've just installed the older dev version locally, I had a quick browse, and I was impressed! I will most definitely check this version out! I'm also trying to think of something to add to the engine, so far, I'm blank... Good work Alain! -
You must spread some Reputation around before giving it to Djkanna again. Thanks DJK for providing the link.
-
You can't just say that. You've made a point, now supply evidence and explain it. So far, it's your opinion. @OP - Djkanna posted a engine comparison somewhere on here, I think you'll find it useful
-
Try: $enperc = $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $enopp=100-$enperc; echo "Energy: <div style="background: url(images/stat_bar_bg.png) no-repeat;width:{$enperc}px;height:18px;"> <div style="background: url(images/stat_bar.png) no-repeat;width:{$enopp}px;height:18px;"></div></div>";
-
request thread lock
-
No worries at all! Can we request topic lock?
-
Try again now, I've edited my post.
-
Try this (Not tested with browser output - Although, in theory, should work.): ---Code removed due to request (by the OP).
-
Let's start from scratch. With no PHP, does it all behave as you want it to with just HTML and CSS?
-
As you can mask anything with HTML and CSS - by that I mean not having the stock design - I think your best bet it to ask the owners, as we'd just be guessing, in reality, as we couldn't tell for definite.
-
Where are you looking? <div class="r-side"> <div id="user-panel"> <div class="padding"> <h2><?= $u.$d ?> [<?= $ir['userid'] ?>]</h2>
-
Try these things; Remove the capital 'i' in If (Line 75) Running the queries in phpmyadmin, to see if an error is thrown Try not having an if else in join(), and use a default: 'You have already entered a rodeo this week'; break; Report back with any issues that occur after doing 1, 2 and 3.
-
Some tips: Supply the raw css & html files Supply a raw header file Supply a screenshot of what you wish the outcome to be We're not mind readers.
-
Noted. I was going by what my college tutor taught me. Now I remember that she called it plain English, my bad spud, thanks.
-
I didn't like the e-mail activation for a game, but I signed up anyway... The login background box things, not a fan. It's hard to read the text I activate my account, no link to login. I have to type it in manually I login, nothing entices me to play, but I play for a while anyway... The mail table isn't full width, it looks weird The ingame template, not very attrative Not sure what to do ingame...
-
Here's pseudo: var protection <= var default_protection var protection <= var protection (their xp / 20000) * 1000 var protection_added <= ( var protection / var default_protection ) * var default_protection -- Rank: Official TP Legend [var protection_added%] In theory, I think this should work :)
-
Here's my question. If you know that they're illegal, why did you hand over $15?
-
Read this article (1) Read this article (2) It's all good to have loads of "modifications" to a base game, such as McCodes, but without these things mentioned in the articles, and other things, you will just fail.
-
Instead of adding mods, perhaps create something to entice people to play. Just a suggestion.
-
You obviously haven't heard of goldrush domains then, or perhaps even the sale of se><.com, which sold for a reported $13million. There is a business for selling domains for a high price, but as the market is flooded, it's quite tricky, although achievable.
-
So, we all know the story of Kim DotCom and the shut down of MegaUpload earlier this year, Kim DotCom is back, with another "project", MegaBox. I'm not entirely sure what it's all about, I think it's some sort of music and file hosting service, a little like MegaUpload, but I could be wrong :p Links The Reddit Thread So, What's your thoughts on this?
-
Like your previous work, I'm a fan!
-
Try (untested) <?php include "globals.php"; if(!in_array($_GET['type'], array("equip_primary", "equip_secondary", "equip_armor", "equip_helmet", "equip_boots", "equip_amulet", "equip_braclet", "equip_ring", "equip_special"))) { print "This slot ID is not valid."; $h->endpage(); exit; } if(!$ir[$_GET['type']]) { print "You do not have anything equipped in this slot."; $h->endpage(); exit; } item_add($userid, $ir[$_GET['type']], 1); $db->query("UPDATE users SET {$_GET['type']}=0 WHERE userid={$ir['userid']}"); $names=array( "equip_primary" => "Primary Weapon", "equip_secondary" => "Secondary Weapon", "equip_armor" => "Armor", "equip_helmet" => "Helmet", "equip_boots" => "Boots", "equip_amulet" => "Amulet", "equip_braclet" => "Braclet", "equip_ring" => "Ring", "equip_special" => "Special", ); print "The item in your {$names[$_GET['type']]} slot was successfully unequiped."; $get = $db->query("SELECT `effect2` FROM `items` WHERE (`effect2_on`=1) AND (`itmid`={$ir[$_GET['type']]})"); if( $db->num_rows($get) ) { $r = $db->fetch_array($get); $einfo=unserialize($r['effect2']); if(in_array($einfo['stat'], array('strength', 'agility', 'guard', 'labour', 'IQ'))) { $stats=$einfo['stat']; $upd=$einfo['inc_amount']; $db->query("UPDATE `userstats` SET $stats=$stats-$upd WHERE userid=$userid"); } } $h->endpage(); ?>
-
I assume you mean music streaming, as video streaming is somewhat frowned upon, highly. With music streaming, it's not a case of finding a way to stream music and use your local files, you need to purchase a license to stream music, as you're giving it to the public - this helps cover the costs that artists/labels may loose, etc. Just keep that in mind if you commit.