Greetings from [DRuG]

Come over here and make your grand introduction to HF!

Greetings from [DRuG]

Postby [DRuG]NikT » Mon Jul 26, 2010 3:57 pm

Hey folks

I'm the founder of a ~110 member modding crew, primarily of the Grand Theft Auto series of PC games.

Having released around 15 mods myself - mainly planes & an aircraft carrier (vehicle) for San Andreas, I consider myself primarily as a vehicle rigger & UV mapper.

I've also dabbled in modding MS Flight Sim, focussing mainly on textures, I only created one flight sim model replacement - a conversion of the dodo from GTA III.

My flight sim modding subclan site has some screenshots of my work in Flight Sim - http://nikt.ath.cx

DRuG's original mods for GTA can be found at http://drugcrew.com

I'm very interested in seeing more missions in Hawx & it's emerging sequel.. I note several expansion packs have been released for the console versions of the game - can't find any info on if there are plans for ports to PC. I would be very interested in getting involved in a community conversion, if anyone is interested/has plans, please message me @ http://forums.drugcrew.com - I check there more often than email.
Image
Image
"But my head's all messed up, so you better driive brother"
User avatar
[DRuG]NikT
 
Posts: 2
Joined: Mon Jul 26, 2010 3:40 pm
Location: Melbourne, Victoria, Australia
Call sign: NikT

Re: Greetings from [DRuG]

Postby Nick » Tue Jul 27, 2010 2:14 am

Hello!
Affordable, personal, secure web hosting available at CrystalFulcrum Web Solutions - PM me for more info.
Looking for an online job? Check out MyJobPlz.com!
Nick
Site Admin
 
Posts: 157
Joined: Thu Jul 30, 2009 9:23 pm
Location: Fish Lake
Call sign: SWORD

Re: Greetings from [DRuG]

Postby [DRuG]NikT » Tue Aug 03, 2010 6:12 am

If you guys are having trouble with spam bots posting to your threads, may I recommend installing recaptcha - it's worked on my forums, and we're running phpbb3 too.

The most recent release, phpBB 3.0.7-PL1 has options to use recaptcha and a few others.. looks like it needs a bit of config - that will just be the unique ID you set up on their site.

For older versions like when I installed mine, these instructions allowed me to install it without any config in the admin control panel..

http://groups.google.com/group/recaptcha/browse_thread/thread/2adc4dd06c08db50?tvc=2 wrote:Hi,

I've "hacked" together a simple phpBB3 reCAPTCHA plugin. It was tested
on a development webserver, so you should use it at your own risk in a
production environment.

Files you will need:
reCAPTCHA PHP plugin, available at:
http://code.google.com/p/recaptcha/downloads/list

Extract the file 'recaptchalib.php' and place it in:
%phpbb_root_path%/includes/captcha

Files that will be modified in your phpBB3 directory:
%phpbb_root_path%/styles/prosilver/template/ucp_register.html
%phpbb_root_path%/includes/ucp/ucp_register.php

Code to modify:
In ucp_register.html, locate:
<dd>{CONFIRM_IMG}</dd>

Then delete the following lines of code or comment them out:
<dd><input type="text" name="confirm_code" id="confirm_code" size="8"
maxlength="8" class="inputbox narrow" title="{L_CONFIRM_CODE}" /></dd>
<dd>{L_CONFIRM_CODE_EXPLAIN}</dd>

In ucp_register.php, there are many changes that you'll have to make,
so I'll have to make the instructions compact.

/*Step 1. Place this code before the line "class ucp_register," which
is near the top of ucp_register.php*/

require_once($phpbb_root_path . 'includes/captcha/recaptchalib.' .
$phpEx);

/*Step 2. Place this code after the line "global $config, $db, $user,
$auth, $template, $phpbb_root_path, $phpEx;" which is a few lines
after step 1.*/

// Get a key from http://recaptcha.net/api/getkey
$publickey = '';
$privatekey = '';

# the response from reCAPTCHA
$resp = null;
# the error code from reCAPTCHA, if any
$error = null;

/*Step 3. Place this code on the line "$confirm_id =
request_var('confirm_id', '');" in other words, replace the original
code with this new code*/

$confirm_id = (isset($_POST['recaptcha_response_field']));

/*Step 4. Comment out or delete the following line of code.*/

'confirm_code' => array('string', !$config['enable_confirm'], 5, 8),

/*Step 5a. Go to the section:
// Visual Confirmation handling
$wrong_confirm = false;
if ($config['enable_confirm'])*/
if (!$confirm_id) {
}
else {
/* Comment out or delete all code within the first else statement
(which has nested if...else statements within it) and replace with the
code in Step 5b.*/
}

}

/*Step 5b. Place the following code within the first else statement.*/
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],

$_POST["recaptcha_challenge_field"],

$_POST["recaptcha_response_field"]);

if ($resp->is_valid == false) {
$error[] = $user->lang['CONFIRM_CODE_WRONG'];
$wrong_confirm = true;

/*Step 6. Comment out or delete everything between the following two
lines of code. The two lines themselves are also deleted. In total,
you should be deleting about 13 non-empty lines of code*/
//first line of code.
$code = gen_rand_string(mt_rand(5, 8));

//last line of code
$db->sql_query($sql);

/*Step 7. A few lines after the end of Step 6, replace "$confirm_image
= " and its values with the following line of code. Basically, you're
assigning the variable $confirm_image with a new value.

$confirm_image = recaptcha_get_html($publickey, $error);

Step 8. You should be done. I hope. It works for me on my development
webserver, on a basically vanilla version of phpbb3.
Image
Image
"But my head's all messed up, so you better driive brother"
User avatar
[DRuG]NikT
 
Posts: 2
Joined: Mon Jul 26, 2010 3:40 pm
Location: Melbourne, Victoria, Australia
Call sign: NikT

Re: Greetings from [DRuG]

Postby Nick » Wed Aug 04, 2010 3:08 am

Thanks
Affordable, personal, secure web hosting available at CrystalFulcrum Web Solutions - PM me for more info.
Looking for an online job? Check out MyJobPlz.com!
Nick
Site Admin
 
Posts: 157
Joined: Thu Jul 30, 2009 9:23 pm
Location: Fish Lake
Call sign: SWORD


Return to Introductions

Who is online

Users browsing this forum: No registered users and 1 guest