Jump to content

[C++]Función item.get_attr() de PACI.


Shang

Recommended Posts

No doy soporte de como instalarla.

	int item_get_attribute(lua_State* L)
	{
		LPITEM item = CQuestManager::instance().GetCurrentItem();

		// If there's no item, it'll return 0
		if (!item)
		{

			lua_pushnumber(L, 0);
			return 1;
		}

		// If the function argument isn't a number, returns a syserr error
		if (!lua_isnumber(L, 1))
		{
			sys_err("item_get_attr_type error!! index must be a number");

			return 1;
		}

		// Saves the attribute type and value in integer variables
		int attrType = item->GetAttributeType(lua_tonumber(L,1)); 
		int attrValue = item->GetAttributeValue(lua_tonumber(L,1));
  
		// Creates a lua table
		lua_newtable( L );

		// Gets and inserts the item attribute type into the lua table
		lua_pushnumber(L, attrType);
		lua_rawseti(L, -2, 1);

		// Gets and inserts the item attribute value into the lua table
		lua_pushnumber(L, attrValue);
		lua_rawseti(L, -2, 2);

		return 1;
	}


			{ "get_attr",		item_get_attribute},

Créditos: el nub de PACI, pepe para los colegas ;)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...