Jump to content

  •  

Main

Member Since 08 Dec 2013
Offline Last Active Jun 21 2015 06:40 AM
-----

Posts I've Made

In Topic: Making new command

11 December 2013 - 08:11 PM

Commands are enclosed in ACMD() functions. While I wouldn't say you could typically add a new command anywhere in atcommand.c, you can add a new command before or after these functions. 

 

Example:

 

ACMD(searchstore){	int val = atoi(message);		switch( val ) {		case 0://EFFECTTYPE_NORMAL		case 1://EFFECTTYPE_CASH			break;		default:			val = 0;			break;	}	 searchstore->open(sd, 99, val);		return true;}ACMD(mynewcommand){//...}

Thank you sir!


In Topic: Making character error

11 December 2013 - 04:59 PM

I think you can set it on conf/char-server.conf and search for this line

// Set the letters/symbols that you want use with the 'char_name_option' option.// Note: Don't add spaces unless you mean to add 'space' to the list.char_name_letters: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890

replace or add the character that you want.

 

or if you don't want any restriction you can simply 

// Manage possible letters/symbol in the name of charater. Control character (0x00-0x1f) are never accepted. Possible values are:// NOTE: Applies to character, party and guild names.// 0: no restriction (default)// 1: only letters/symbols in 'char_name_letters' option.// 2: Letters/symbols in 'char_name_letters' option are forbidden. All others are possibles.char_name_option: 1

[font="'courier new', courier, monospace;"]set to 0[/font]

thank you sir!
char problem solved =)


In Topic: NO MSG

11 December 2013 - 10:30 AM

^ if you are using custom data. delete your msgstringtable.txt in yourRO.grf so that it will use the default korean msgstringtable.txt

perfect!!

love you sir♥ <3 lol

thanks to your tip
corrected by diff unchecking msgstringtable


In Topic: NO MSG

11 December 2013 - 10:25 AM

^ if you are using custom data. delete your msgstringtable.txt in yourRO.grf so that it will use the default korean msgstringtable.txt

perfect!!

love you sir♥ <3 lol


In Topic: need help!

08 December 2013 - 01:22 PM

wow

thanks a lot sir!