Skip to content

Instantly share code, notes, and snippets.

// Title : Healer [Hyde]
// Author : Jack Perry
// A Project Renova Script
prontera,150,184,5 script Hyde#t00::healer 81,{
mes "[Hyde]";
mes "Hello, "+strcharinfo(0)+"!";
mes "I'm a Dog. With healing powers.";
mes "I can heal you. For 5,000 Zeny.";
f = open('idnum2itemdisplaynametable.txt', 'r')
g = open('output.txt', 'w')
for line in f:
x = line.replace('#',',"',1)
y = x.replace('#','","","");',1)
if y[1].isdigit():
z = "REPLACE INTO `item_meta` VALUES (" + y
g.write(z)
else:
@jackperry
jackperry / Urllib2 Usage
Created February 11, 2011 10:16
Found from Google. Saving here.
import urllib2, base64
request = urllib2.Request('url')
base64string = base64.encodestring('%s:%s' % ('user', 'password'))[:-1]
request.add_header("Authorization", "Basic %s" % base64string)
htmlFile = urllib2.urlopen(request)
htmlData = htmlFile.read()
print htmlData
htmlFile.close()
@jackperry
jackperry / gist:1781556
Created February 9, 2012 17:51
Sarah Winnem CPT
Want my newsroom to be url.com/newsroom (currently throws a 404)
Posts should be url.com/newsroom/post-title (currently works)
Code in functions.php:
// newsroom custom content type
function bment_post_type_newsroom() {
register_post_type(
'newsroom', array(
'labels' => array(
@jackperry
jackperry / gist:1955918
Created March 2, 2012 05:27
Wordpress Save Custom Fields on Autosave
<?php
function save_fields()
{
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE )
return $post_id;
global $post;
update_post_meta($post->ID, 'field_name', $_POST['field_name']);
}
@jackperry
jackperry / gist:2910236
Created June 11, 2012 14:04
Disable ST2 Remember Open Files
{
"hot_exit": false,
"remember_open_files": false
}
@jackperry
jackperry / gist:3971082
Created October 29, 2012 02:26
GiantBomb Image Download
import urllib
import giantbomb
gb = giantbomb.Api('apikeyhere')
for num in range(1,41000):
try:
game = gb.getGame(num)
for key, value in dict.items(game.image):
if key == "super_url":
super_img = str(value)
@jackperry
jackperry / gist:3971327
Created October 29, 2012 03:31
GiantBomb Game Data Download
from __future__ import print_function
import giantbomb
gb = giantbomb.Api('fe35a7029d3d80722ab9d05d4a9a4c53e115f4f8')
f = open('games.txt', 'w')
for num in range(1,41000):
try:
game = gb.getGame(num)
print('"'+str(game.id)+'"'+',"'+str(game.name)+'","'+str(game.deck)+'"', file=f)
except Exception, error:
@jackperry
jackperry / gist:5731331
Last active December 18, 2015 05:18
For Stephen.
<?php
$post_title = get_the_title();
if($post_title == 'x'){
echo $post_title."y";
} else {
echo $post_title;
}
?>
@jackperry
jackperry / rwafi.js
Last active December 18, 2015 18:09
Remove WordPress autop From Images
$("#page_whole > p > a > img").each(function(index){
if($(this).parent().parent().is("p")){
$(this).parent().unwrap();
}
});