This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RRrrandom gist test! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How do I shot webs? | |
void function afunctionzors(){ | |
sprintf("pie"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
} else if ($victom == "Group of Theives") { | |
$turn_cost = 1; | |
if (getcounter($username) <5) { | |
echo "A group of theives is waiting for you. They seem to be angered by your attacks on their Theif brethren." | |
$Group_attack= rand(200, 500) | |
if (!subtracthealth($username, $Group_attack) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
} else if ($victom == "Thief") { // You only get ganged up on by the thieves if you're already trying to attack the theif. | |
// Check the counter to see whether they've attacked a thief multiple times in a row. | |
if(SESSION::get('counter')){ | |
$counter = SESSION::get('counter'); | |
} else { | |
$counter = 1; | |
} | |
$counter = $counter + 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public $includes = array( | |
"list" => array( | |
"desc" => "List of images and image detail"), | |
"toplevel" => array( | |
"desc" => "List of top-level categories only", | |
"fixed" => array( | |
"action" => "toplevel")), | |
"nestedlevels" => array( | |
"desc" => "List of all category depths", | |
"default" => array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Experience System Goals: | |
Disincentivize spamming by rewarding risk | |
(i.e. winning against a single strong target should be more rewarding than winning against the equivalent hp of many weak targets) | |
(and actually taking damage should be more rewarding than taking no damage) | |
Reward tactics, better damage with the same tools, more than spamming. | |
(e.g. rewards for a kill instead of just a hit and run) | |
(and more experience for damage done) | |
(and eventually additive use of effects like poison) | |
Reward difficulty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/deploy/lib/char/Player.class.php b/deploy/lib/char/Player.class.php | |
index 81f04fe..277c3d8 100644 | |
--- a/deploy/lib/char/Player.class.php | |
+++ b/deploy/lib/char/Player.class.php | |
@@ -61,5 +61,9 @@ class Player | |
public function as_array() { | |
return (array) $this->vo; | |
} | |
+ | |
+ public function get_player_id() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cd ~/bin | |
curl -O http://github.com/technomancy/leiningen/raw/stable/bin/lein | |
chmod 755 lein | |
lein self-install | |
cd /tmp | |
mkdir garden | |
cd garden/ | |
cat >project.clj <<EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tchalvak:~/ninjawars/deploy$ cat lib/common/lib_input.php | |
<?php | |
/* | |
* Deals with getting and filtering user input (just from request). | |
* | |
* @package input | |
*/ | |
// Input function that by default LEAVES INPUT COMPLETELY UNFILTERED | |
// To not filter some input, you have to explicitly pass in null for the third parameter, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
By Marco Arment <[email protected]>. | |
This code is released in the public domain. | |
THERE IS ABSOLUTELY NO WARRANTY. | |
Usage example: | |
// In a registration or password-change form: |
OlderNewer