version 1.41 | | version 1.42 |
---|
| | |
%{ | | %{ |
/* | | /* |
* static char *rcsid_object_c = | | * static char *rcsid_object_c = |
* "$Id: loader.l,v 1.41 2003/04/05 05:39:48 mwedel Exp $"; | | * "$Id: loader.l,v 1.42 2003/06/19 10:59:27 tchize Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
^tooltype{S} op->tooltype = IVAL; | | ^tooltype{S} op->tooltype = IVAL; |
^casting_speed{S} op->casting_speed = FVAL; | | ^casting_speed{S} op->casting_speed = FVAL; |
^elevation{S} op->elevation = IVAL; | | ^elevation{S} op->elevation = IVAL; |
| | ^smoothlevel{S} op->smoothlevel = IVAL; |
^client_type{S} op->client_type = IVAL; | | ^client_type{S} op->client_type = IVAL; |
^body_{A} set_body_info(op, yytext); | | ^body_{A} set_body_info(op, yytext); |
| | |
| | |
save_long(buf, "container", op->weight_limit); | | save_long(buf, "container", op->weight_limit); |
if (op->will_apply!=op2->will_apply) | | if (op->will_apply!=op2->will_apply) |
save_long(buf, "will_apply", op->will_apply); | | save_long(buf, "will_apply", op->will_apply); |
| | if(op->smoothlevel!=op2->smoothlevel) |
| | save_long(buf, "smoothlevel", op->smoothlevel); |
| | |
if (op->current_weapon_script!=op2->current_weapon_script){ | | if (op->current_weapon_script!=op2->current_weapon_script){ |
sprintf(buf2,"current_weapon_script %s\n",(op->current_weapon_script)); | | sprintf(buf2,"current_weapon_script %s\n",(op->current_weapon_script)); |