* Changed the string hash of the script engine to SDBM.

* Reporting information about script data when an error occurs.
* More work on ticket #41 (array functions).

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10813 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
FlavioJS
2007-06-26 21:03:31 +00:00
parent d3d77a69d1
commit a75ec9a547
5 changed files with 580 additions and 309 deletions

View File

@@ -44,8 +44,10 @@ struct script_code {
};
struct script_stack {
int sp,sp_max,defsp;
struct script_data *stack_data;
int sp;// number of entries in the stack
int sp_max;// capacity of the stack
int defsp;
struct script_data *stack_data;// stack
struct linkdb_node **var_function; // ŠÖ<C5A0>ˆË¶•Ï<E280A2>
};