since i dunno what you wanna do with it..how you set it in ur map..or how you setup the script...
just some minor example for you to reference..
http://pastebin.com/raw.php?i=BT35KdKq
the block part is the wall..
it's better to add a deltimer to remove any current attached timer to that label..
deltimer "Arena Master::OnTimeout";
addtimer 300000,"Arena Master::OnTimeout";
otherwise the the player could have attached multiple addtimer and run separately...
the announce come with a font size parameter..
*announce "<text>",<flag>{,<fontColor>{,<fontType>{,<fontSize>{,<fontAlign>{,<fontY>}}}}};
but this doesnt work in new clients....only work in older client..like 2010 ~
if you are looking for pre-renewal data folder..
i think the best option you got here is using the old data folder...
http://svn.games-service.net/
http://eathena.ws/board/index.php?showtopic=65431
@iraciz
you cant blame much on this...
i am sure it's not easy to edit that much of items...and keep check line by line for missing contents..
if the contents is missing / wrong...then you can just simply give him a hand and help him correct it.
we dont have much ppl that really dealing with updated contents for data folder...or manage it.
@autoloot and @alootid are different command....both work differnt...
@autoloot - loot ALL item based on drop rate
@alootid - loot SPECIFIC item based on drop rate
you mean these setting ?
trunk/conf/battle/status.conf
// Adjustment for the natural rate of resistance from status changes.
// If 50, status defense is halved, and you need twice as much stats to block
// them (eg: 200 vit to completely block stun)
pc_status_def_rate: 100
/*==========================================
* Check if player can drop an item
*------------------------------------------*/
int pc_candrop(struct map_session_data *sd, struct item *item)
{
if( item && item->expire_time )
return 0;
if( !pc_can_give_items(sd) ) //check if this GM level can drop items
return 0;
if ( pc_get_group_level(sd) == 50 ){ // your group you want to disable
clif_displaymessage (sd->fd, msg_txt(426));
return 0;
}
return (itemdb_isdropable(item, pc_get_group_level(sd)));
}
you have to put the curley bracket if the contents inside the IF-ELSE statement has more than 1 lines