• This is a reminder of 3 IMPORTANT RULES:

    1- External self-promotion websites or apps are NOT allowed here, like Discord/Twitter/Patreon/etc.

    2- Do NOT post in other languages. English-only.

    3- Crack/Warez/Piracy talk is NOT allowed.

    Breaking any of the above rules will result in your messages being deleted and you will be banned upon repetition.

    Please, stop by this thread SoccerGaming Forum Rules And Guidelines and make sure you read and understand our policies.

    Thank you!

Change max value

fwine

Club Supporter
You have to edit the something-meta.xml file you open when you want to load a database in DBmaster with the notepad

Then you find the right table (in your case "playerstats"), find the right field name (in your case "gamesplayedatposition"), and change the value after "rangehigh"

(I don't know where you found the database you're using in your screenshot; so i'll give you an exemple with an other DB)

For instance, if I want to allow player with an ID more than 300000, i find the "players" table, find the "playerid" field, and the following code :

<table name="players" shortname="HvYq" maxupdate="-1" maxinsert="40" maxdelete="1" savegroups="tempsquads">

<fields>
<field name="playerid" shortname="ykFq" type="DBOFIELDTYPE_INTEGER" depth="19" null="False" rangehigh="300000" rangelow="0" key="True" />


Will become

<table name="players" shortname="HvYq" maxupdate="-1" maxinsert="40" maxdelete="1" savegroups="tempsquads">

<fields>
<field name="playerid" shortname="ykFq" type="DBOFIELDTYPE_INTEGER" depth="19" null="False" rangehigh="500000" rangelow="0" key="True" />
 


Top