Jump to content

  •  

thanna

Member Since 24 May 2013
Offline Last Active May 23 2017 12:06 AM
-----

#80558 Gepard Shield

Posted by thanna on 20 February 2017 - 08:49 AM

Does anybody know how to get in touch with mr. functor?

I tried contacting him on skype and also tried a private message here but no reply.

I am wondering why new servers have gepard shield installed and yet i am having trouble buying it from mr. functor. :(

anyone who can help me contact mr. functor? 

 

just leave a message on his skype. he's out of town for the past few days. he just got home today. maybe he'll reply to you. just be careful with the functor you are talking too. he's got too many doppelgangers out there.

 

here's the legit functor. 

 

functor.x



#53281 About Faction/Race

Posted by thanna on 21 March 2015 - 02:10 PM

thanks for the reference mate, if ever I'm able to this successfully I will share it to those who need it  :D




#47622 unknown column 'last_mac'

Posted by thanna on 11 December 2014 - 11:06 AM

you have to import the sql of that plugin 

 

 

The problem I do not have the sql.

execute this on your database mate

 

ALTER TABLE `login` ADD COLUMN `last_mac` VARCHAR(18) NOT NULL DEFAULT ''  AFTER `pincode_change` ; 



#8757 Help Me How To Remove Information in flux

Posted by thanna on 21 June 2013 - 06:49 AM

go to your cp/config/application.php

 

and find this code

 

'Information' => array(			'Server Info.'  => array('module' => 'server', 'action' => 'info'),			'Server Status' => array('module' => 'server', 'action' => 'status'),			'WoE Hours'     => array('module' => 'woe'),			'Castles'       => array('module' => 'castle'),			"Who's Online"  => array('module' => 'character', 'action' => 'online'),			'Map Statistics'=> array('module' => 'character', 'action' => 'mapstats'),			'Ranking Info.' => array('module' => 'ranking', 'action' => 'character'),		),

and add comment lines or just copy this

 

/*'Information' => array(			'Server Info.'  => array('module' => 'server', 'action' => 'info'),			'Server Status' => array('module' => 'server', 'action' => 'status'),			'WoE Hours'     => array('module' => 'woe'),			'Castles'       => array('module' => 'castle'),			"Who's Online"  => array('module' => 'character', 'action' => 'online'),			'Map Statistics'=> array('module' => 'character', 'action' => 'mapstats'),			'Ranking Info.' => array('module' => 'ranking', 'action' => 'character'),		),*/



#8549 Can anybody teach me, how to use HPM by examples?

Posted by thanna on 19 June 2013 - 12:42 PM

click my signature, it will redirect you to wiki, it has step by step images on how to do it




#7135 Custom Aura

Posted by thanna on 04 June 2013 - 01:02 PM

I see a lot of threads asking for custom auras. Is this related with @aura command too? I hope someone will post a tutorial with this. It'll be helpful :meow:

@aura is a source mod that can change your aura, you can use this to use to give a 1st job, 2nd job and 3rd job with different aura, if you still have questions just post it here




#6982 [Atcommand]Dance

Posted by thanna on 03 June 2013 - 03:13 AM

Hi! I converted this source mod to a plugin to avoid conflict with incoming updates, one of the most unique feature hercules have is HPM
 
Note: The code of @dance isn't mine, credit goes to the owner , I just converted it to a plugin for Hercules
 
Heres the code:
#include <stdio.h>#include <string.h>#include "../common/HPMi.h"#include "../map/script.h"#include "../map/pc.h" HPExport struct hplugin_info pinfo ={    "@dance",		// Plugin name    SERVER_TYPE_MAP,// Which server types this plugin works with?    "0.1a",			// Plugin version    HPM_VERSION,	// HPM Version (don't change, macro is automatically updated)}; ACMD(dance){        if (!message || !*message) {		  clif->message(fd, "usage: @dance 1-9");return -1;   }   if ( atoi(message) == 1 ) {clif->specialeffect(&sd->bl, 413, ALL_CLIENT);   } else if ( atoi(message) == 2 ) {clif->specialeffect(&sd->bl, 414, ALL_CLIENT);   } else if ( atoi(message) == 3 ) {clif->specialeffect(&sd->bl, 415, ALL_CLIENT);   } else if ( atoi(message) == 4 ) {clif->specialeffect(&sd->bl, 426, ALL_CLIENT);   } else if ( atoi(message) == 5 ) {clif->specialeffect(&sd->bl, 458, ALL_CLIENT);   } else if ( atoi(message) == 6 ) {clif->specialeffect(&sd->bl, 466, ALL_CLIENT);   } else if ( atoi(message) == 7 ) {clif->specialeffect(&sd->bl, 501, ALL_CLIENT);   } else if ( atoi(message) == 8 ) {clif->specialeffect(&sd->bl, 540, ALL_CLIENT);   } else if ( atoi(message) == 9 ) {clif->specialeffect(&sd->bl, 550, ALL_CLIENT);   }	else	{	clif->message(fd, "usage: @dance 1-9");	 }   return true;} /* Server Startup */HPExport void plugin_init (void){    clif = GET_SYMBOL("clif");    script = GET_SYMBOL("script");    skill = GET_SYMBOL("skill");     HPMi->addCommand("dance",ACMD_A(dance));}
If you don't know to make/add a plugin follow this link

http://herc.ws/wiki/...Plugin_for_MSVC


#6219 Posting Some Works

Posted by thanna on 28 May 2013 - 12:45 PM

great 10/10  :D 

nice work mate