Jump to content
RealModScene
Sign in to follow this  
kira125

[Aurora] Create your own Filters

Recommended Posts

i was wonder if its possible to make the Filter more Simple


 


Njw5e3M.png


i didnt use The Genres Misc And user folder also application and im sure some people did use indies or kinect games


so.....


it be usefull to hide these options to make it simple


 


bY6Pj5F.jpg


Something like this


im not say to erase them they are usefull for lot of people just hide them


and activate them if you use those from "Editar" bottom


d06shr1.jpg


and also i think it will be good to make you able to create your own custom Filters by select anygame you want from your list


and name the Filter


something like this


Vsq5jLv.jpg


 


well thats some ideas to beggin the new year :)


thanks for your work and for your time


and happy new year to everyone


Share this post


Link to post
Share on other sites

You can already create custom filters...

The only way to "hide" filters is to simply remove them from your filters table...

Share this post


Link to post
Share on other sites

You can already create custom filters...

The only way to "hide" filters is to simply remove them from your filters table...

how can i create them?

Share this post


Link to post
Share on other sites

yes... i was suggesting something that can be use from the dash easy to use

 

also where is the file i need to delete to make howbrew desapear from the list

and there is no way to keep hide kinect from user folder

or do i need to edit the scrip

Share this post


Link to post
Share on other sites

There probably won't be a easy way to create your own custom filters from the dash directly... sorry...

To remove "Homebrew" from the list, you open Media\Scripts\Filter.lua

then you remove the line "GameListFilterCategories["Homebrew"] = GameListFilterHomebrew" it'll no longer be visuable after you've done that... it might be possible to make a user script that erases this aswell, i'll look into that... (i think your changes will be restored upon updates otherwise as it overwrites all files with each update)

To make the Hide Kinect filter show up outside of "User" you have to modify the script...

** edit: **

Write this in a textfile you name whatever you want with the extension ".lua" and put it in Media\Scripts\ then it'll hide "Homebrew":

 

GameListFilterCategories["Homebrew"] = nil

Share this post


Link to post
Share on other sites

There probably won't be a easy way to create your own custom filters from the dash directly... sorry...

To remove "Homebrew" from the list, you open Media\Scripts\Filter.lua

then you remove the line "GameListFilterCategories["Homebrew"] = GameListFilterHomebrew" it'll no longer be visuable after you've done that... it might be possible to make a user script that erases this aswell, i'll look into that... (i think your changes will be restored upon updates otherwise as it overwrites all files with each update)

To make the Hide Kinect filter show up outside of "User" you have to modify the script...

** edit: **

Write this in a textfile you name whatever you want with the extension ".lua" and put it in Media\Scripts\ then it'll hide "Homebrew":

 

GameListFilterCategories["Homebrew"] = nil

thanks i have already read the tutorials (but i didnt understand to much :) ) but i could delete Homebrew line in the Filter.lua

also delete the geners, misc and user lines (then dont show anymore)

and i could save and add the hide kinect Filter to the main list

and against all odds it works (tested)

http://prntscr.com/5p41og

i guees i learned something

and now i want to create a filter witch select games by his title id

for example GameListFilterCategories["Dinos"]

witch only show 3 or 4 games but i dont know how i sould begin

Share this post


Link to post
Share on other sites

This would be the start... then you need to return true or false depending on if it should be shown or not (true if show, false if hide if my memory serves me right)

GameListFilterCategories["Dinos"] = function(Content) 

end
TitleId would be tested like this:

return Content.TitleId == 0x454109DB
The above example would Only show games matching the FIFA 15 TitleID

Share this post


Link to post
Share on other sites

This would be the start... then you need to return true or false depending on if it should be shown or not (true if show, false if hide if my memory serves me right)

 

GameListFilterCategories["Dinos"] = function(Content) 

end
TitleId would be tested like this:

return Content.TitleId == 0x454109DB
The above example would Only show games matching the FIFA 15 TitleID

 

got it thanks

Share this post


Link to post
Share on other sites

This would be the start... then you need to return true or false depending on if it should be shown or not (true if show, false if hide if my memory serves me right)

 

GameListFilterCategories["Dinos"] = function(Content) 

end
TitleId would be tested like this:

return Content.TitleId == 0x454109DB
The above example would Only show games matching the FIFA 15 TitleID

 

i try but i can only add one game.. if i try 2 or more the secction disapear

like this

http://i.imgur.com/qW9coHV.png

i edit Filter.lua and add this line

GameListFilterCategories["Co-Op Games"] = GameListFilterCoOpGames

 

then i edit FilterFunctions.lua

and add these lines

function GameListFilterCoOpGames(Content)

   -- Add only xbox 360 games

   return Content.TitleId == 0x434307D4

end

 

after this i works fine when i select Co-Op Games just show Resident evil 5

but when i do this

function GameListFilterCoOpGames(Content)

   -- Add only xbox 360 games

   return Content.TitleId == 0x434307D4

   return Content.TitleId == 0x43430819

end

 

the secction disapear

what im doing wrong?

Share this post


Link to post
Share on other sites

i try but i can only add one game.. if i try 2 or more the secction disapear

like this

http://i.imgur.com/qW9coHV.png

i edit Filter.lua and add this line

then i edit FilterFunctions.lua

and add these lines

after this i works fine when i select Co-Op Games just show Resident evil 5

but when i do this

the secction disapear

what im doing wrong?

You really shouldn't be changing the built in scripts... they'll be replaced when you do an update...

You can't return twice... you have to do it like this:

 

function GameListFilterCoOpGames(Content)
   -- Add only xbox 360 games
   return (Content.TitleId == 0x434307D4 or Content.TitleId == 0x43430819)
end
What this means is that it'll check for either 0x434307D4 or 0x43430819

When the entire list disappears it's because of a script error

Share this post


Link to post
Share on other sites

You really shouldn't be changing the built in scripts... they'll be replaced when you do an update...

You can't return twice... you have to do it like this:

 

function GameListFilterCoOpGames(Content)
   -- Add only xbox 360 games
   return (Content.TitleId == 0x434307D4 or Content.TitleId == 0x43430819)
end
What this means is that it'll check for either 0x434307D4 or 0x43430819

When the entire list disappears it's because of a script error

and if i do a backup?

i should do this  return (Content.TitleId == 0x434307D4 or Content.TitleId == 0x43430819)

as many games i want to add to the list right?

this line i want to said something like add only maching titleID games but everytime i try something i get an script error

because i want to add arcades or xbox classic games

-- Add only xbox 360 games

Share this post


Link to post
Share on other sites

and if i do a backup?

i should do this  return (Content.TitleId == 0x434307D4 or Content.TitleId == 0x43430819)

as many games i want to add to the list right?

this line i want to said something like add only maching titleID games but everytime i try something i get an script error

because i want to add arcades or xbox classic games

-- Add only xbox 360 games

between each test you add "and" or "or" depending on how it should be used compared to the ones before... you really should read up on LUA... it's not hard... it's very basic...

If you're going to keep asking me for everything, you can just tell me what you want the filters to do and i'll write them for you instead...

Share this post


Link to post
Share on other sites

between each test you add "and" or "or" depending on how it should be used compared to the ones before... you really should read up on LUA... it's not hard... it's very basic...

If you're going to keep asking me for everything, you can just tell me what you want the filters to do and i'll write them for you instead...

im not very good at english also im didnt know anything about programing or scripting

i just want the scrip to add game by his Title ID and by his Directory to make especific game selections

return (Content.Directory == Usb0/360/bioshock)

please :)

also i apreciate your patience

Share this post


Link to post
Share on other sites

im not very good at english also im didnt know anything about programing or scripting

i just want the scrip to add game by his Title ID and by his Directory to make especific game selections

return (Content.Directory == Usb0/360/bioshock)

please :)

also i apreciate your patience

If you're going to keep adding specific games to it, why not just use the favorites option and filter on that?

i have to look into the exact way Directory is listed before i can tell you how to use that... but, basically you have to have " around strings you want to check...

i didn't know anything about programming or scripting when i started either, you just have to read and learn like everyone else... we all started from nothing ;)

Share this post


Link to post
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.

Loading...
Sign in to follow this  

×
×
  • Create New...