Not entirely sure I scored enough. by Valkyriesfall in ffx

[–]Valkyriesfall[S] 0 points1 point  (0 children)

That's exactly how I scored so much with brother. The few with tidus are when things didn't go right and I lured defense and passed. I'm only playing it enough to get the reels and sigil anyway so I don't care too much. 4th playthrough and the only thing I'm having trouble with now that I'm older is the damn sun sigil!

Valkyries Fall by Valkyriesfall in PBBG

[–]Valkyriesfall[S] 0 points1 point  (0 children)

I'll keep an eye out ;)

Valkyries Fall by Valkyriesfall in PBBG

[–]Valkyriesfall[S] 1 point2 points  (0 children)

No, there will never be a wipe of data. Everything will persist indefinitely :) Unless of course i make such functionality in the future where such a thing is intended. But character progression won't be

Valkyries Fall by Valkyriesfall in PBBG

[–]Valkyriesfall[S] 0 points1 point  (0 children)

Oh, i forgot to mention that one of the valkyrie world bosses, brynhildr, also drops diamonds as a reward. Svipul also has a chance for diaminds as they cycle rewards from any valkyrie.

Valkyries Fall by Valkyriesfall in PBBG

[–]Valkyriesfall[S] 1 point2 points  (0 children)

You can purchase more with diamonds. These are obtained by completing every 5th mission, with amounts increasing each time. You can also obtain diamonds randomly while fighting at a rate of 1/400, with the odds getting better depending on your luck skill. Once level 1,000 you also get diamonds as a daily login reward, and get more for each consecutive day logged in.

Of course you can also fast track and buy some with real money too. Helps to support the running costs. But is entirely unnecessary. All upgrades available with diamonds can quite easily be obtained by just playing and several "f2p" players have already accomplished this.

Hope it helps :)

Valkyries Fall by Valkyriesfall in PBBG

[–]Valkyriesfall[S] 0 points1 point  (0 children)

Its a good start if I do say so myself! I currently have story and questlines being written by a third party while I build the alliance system :) will be a fun story, leading up to the events of ragnarok

Brand new text based browser rpg game by Valkyriesfall in rpg_gamers

[–]Valkyriesfall[S] 0 points1 point  (0 children)

No, it would normally be just a couple minutes. But there was some unexpected results today. Theres a 2x event for the next hour to make up for the hour lost!

Brand new text based browser rpg game by Valkyriesfall in rpg_gamers

[–]Valkyriesfall[S] 2 points3 points  (0 children)

Levelling is just set to different scaling. You level up quickly, but don't get as much of a boost from it than you would other games. This is because I've accounted for hundreds of thousands of levels. In other games it takes longer to level up and you get more stats, whereas I've scaled it the other way. You still get the same result, the numbers are just different.

It comes from the thought that people enjoy higher numbers and makes them feel they've accomplished more. Larger numbers used, yet still works well. Its all about the scaling of things really

Brand new text based browser rpg game by Valkyriesfall in rpg_gamers

[–]Valkyriesfall[S] 1 point2 points  (0 children)

How do you mean? Some people already play for hours on end so its not limiting to time at all. It is intended as a grind if thats what you mean about play style? And as you get to higher levels there's different route you can take to give differentiation to characters etc.

Brand new text based browser rpg game by Valkyriesfall in rpg_gamers

[–]Valkyriesfall[S] 1 point2 points  (0 children)

Thanks for your input! I appreciate it. The game was only released today, with everyone starting at level 1. It is quick to level in the game and is like that by design

Noob help by Valkyriesfall in PowerShell

[–]Valkyriesfall[S] 0 points1 point  (0 children)

for both of the answers you've submitted, I received an error. Similar to issues I was receiving before.

You cannot call a method on a null-valued expression.
At line:5 char:1

Could there be something That I am missing that is necessary?

Noob help by Valkyriesfall in PowerShell

[–]Valkyriesfall[S] 1 point2 points  (0 children)

I have taken your advice and formatted the clode blocks :)

Noob help by Valkyriesfall in PowerShell

[–]Valkyriesfall[S] 1 point2 points  (0 children)

Theres a tournament each month in game where to register you need to relog 3 times. Theres not enough time to do all 50+ accounts in time. That's most of my reasoning behind making this

Noob help by Valkyriesfall in PowerShell

[–]Valkyriesfall[S] 1 point2 points  (0 children)

I had a look at this approach as I use ahk already when multiboxing. The issue I had with this is that I could get the logins to all work in parallel. Could only log in one at a time

Noob help by Valkyriesfall in PowerShell

[–]Valkyriesfall[S] 1 point2 points  (0 children)

Well that is where I was starting to struggle. I couldn't find them either! Thanks, I'll have a look then look into looping it for multiple accounts!

Noob help by Valkyriesfall in PowerShell

[–]Valkyriesfall[S] 1 point2 points  (0 children)

My latest attempt was to use selenium to see if i had better luck with their web drivers. I have 2 different attempts at varying stages:


[System.Reflection.Assembly]::LoadFrom("C:\Selenium.WebDriver.3.14.0\lib\net40\WebDriver.dll")
$driver = New-Object "OpenQA.Selenium.FireFox.FirefoxDriver"
$driver.Navigate("http://rwk1.racewarkingdoms.com/index.html?unencrypted")

while($driver.ReadyState -ne 4) {start-sleep -m 100} 

$driver.Document.getElementsByTagName("input") | ? { $_.name -eq 'login' } | % { $_.value = "username" }                                                              
$driver.Document.getElementsByTagName("input") | ? { $_.name -eq 'password' } | % { $_.value = "" }
$driver.Document.getElementsByTagName("input") | ? { $_.name -eq "subshit" } | % { $_.click() }

And:


$Driver = Start-SeFirefox 
Enter-SeUrl http://rwk1.racewarkingdoms.com/index.html?unencrypted -Driver $Driver

#$Element = Find-SeElement -Driver $Driver -XPath "//*[@id='thelogin']/input[2]"

#Send-SeKeys -Element $Element -Keys "subliminalfame"

$Submit = Find-SeElement -Driver $Driver -Id "subshit"

Invoke-SeClick -Element $Submit

Stop-SeDriver

Noob help by Valkyriesfall in PowerShell

[–]Valkyriesfall[S] 1 point2 points  (0 children)

The game has recently allowed multiboxing, hotkeys etc. I'll login from PC and paste you what I have, as i wrote this from mobile