invertika_game.Game.AccountConnection.createFloorItems C# (CSharp) Method

createFloorItems() private method

private createFloorItems ( int mapId, int itemId, int amount, int posX, int posY ) : void
mapId int
itemId int
amount int
posX int
posY int
return void
        void createFloorItems(int mapId, int itemId, int amount, int posX, int posY)
        {
            MessageOut msg=new MessageOut(Protocol.GAMSG_CREATE_ITEM_ON_MAP);
            msg.writeInt32(mapId);
            msg.writeInt32(itemId);
            msg.writeInt16(amount);
            msg.writeInt16(posX);
            msg.writeInt16(posY);
            send(msg);
        }