Jump to content

Sherer

Bronze
  • Posts

    112
  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    0%

Sherer last won the day on October 25 2019

Sherer had the most liked content!

2 Followers

About Sherer

Informations

  • Gender
    Female
  • Country
    Canada
  • Nationality
    Dutch

Social Networks

  • Discord
    #4619

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Sherer's Achievements

Community Regular

Community Regular (8/16)

  • Dedicated
  • Reacting Well
  • Very Popular Rare
  • First Post
  • Collaborator

Recent Badges

451

Reputation

  1. Check the TABs (seems that you put incorrect number of tabulators).
  2. Go to localeInfo.py, find NumberToMoney function and take the join formula.
  3. Lookout for that query: SELECT account, companion FROM messenger_list" WHERE account='edward95' and remove "
  4. There are few things you need to change in order to run source on windows (mostly conflicts between windows function and some in-header declared) + you are missing include files (mysql connect in that case).
  5. Mall def bonus is more likely not to be displayed on stats window. As far as I remember you better use grade def bonus instead.
  6. The stat window displayes only specific type of def bonus (where there are different sort of it). To check whether it works or not use /state command (yet if HP works, it's probably likely applies work as designed). Try to change def bonus to one correspoding to stat window.
  7. Use visual studio instead of visual studio code (it would be easier to maintain a code without a need for extra setup). [Hidden Content]
  8. You ain't gonna find a solution online. Best you can to do is to hire a developer to come up with a solution that would bring the boss back into moveable area, or simply warp it back to initial spawn position.
  9. The best explanation can be found in here: [Hidden Content]
  10. Generate 2 sets and shuffle one of them. local tabA = {} local tabB = {} for i = 1, 5 do table.insert(tabA, i) table.insert(tabB, i) end -- Shuffle second tab with Yates-Fisher for i = table.getn(tabB), 2, -1 do local j = math.random(i) tabB[j], tabB[i] = tabB[i], tabB[j] end print("Table A:") for k, v in pairs(tabA) do print(string.format("[%d] = %d", k, v)) end print("Table B:") for k, v in pairs(tabB) do print(string.format("[%d] = %d", k, v)) end
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.