• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[Campaign] Tales of Silventria Mechanics Thread

Status
Not open for further replies.
Level 10
Joined
Jan 31, 2017
Messages
377
oh that rasler, the fucker just wants attention and that's all. he made it look like he's making this awesome rpg, but in actuality he just shows pics from what he made years ago to get people hyped so they give him attention, i dont think any new work is being done at all, its just all an attention grab
 

Rem

Rem

Level 7
Joined
Apr 12, 2017
Messages
230
looks like Dioneve hasnt been eating her cereal and is weak hit point wise
 
Level 10
Joined
Jan 31, 2017
Messages
377
In the missions she’ll have some additional health items and a cloak of flame, but she’s not a hero you engage directly with your forces, shes more of the hero that has her henchmen do her work for her. I think Blake mentioned that she’ll send waves of undead at you and also that it’ll be likely that after a battle occurs she would appear raise your own fallen soldiers and have them attack you. This is all the planning stage however.
 
Level 16
Joined
Mar 24, 2017
Messages
827
here's how much fun I'm having this week....

Code:
    Function encode(ByVal trim As String, t As Integer) As String
        Dim i As Integer
        Dim count As Integer = trim.Length
        Dim character As String
        Dim str As String

        For i = 0 To (count - 1)

            character = trim.Substring(i, 1)

            If character = "a" Then

                str = str + (2 ^ count + t).ToString
            End If

            If character = "A" Then

                str = str + (2 * count + count * t).ToString

            End If

            If character = "b" Then

                str = str + (3 * count + t * 6).ToString
            End If

            If character = "B" Then

                str = str + (4 + t).ToString

            End If

            If character = "c" Then

                str = str + (5 * count + 7 * t).ToString
            End If

            If character = "C" Then

                str = str + (1 + count).ToString

            End If

            If character = "d" Then

                str = str + (CLng(t) * 3).ToString
            End If

            If character = "D" Then

                str = str + (8).ToString

            End If

            If character = "e" Then

                str = str + (3 ^ count).ToString
            End If

            If character = "E" Then

                str = str + (4 * count).ToString

            End If

            If character = "f" Then

                str = str + (3 + t).ToString
            End If

            If character = "F" Then

                str = str + (count ^ 2).ToString

            End If

            If character = "g" Then

                str = str + (14).ToString
            End If

            If character = "G" Then

                str = str + (6 * count).ToString

            End If

            If character = "h" Then

                str = str + (5 * count * t * 3).ToString
            End If

            If character = "H" Then

                str = str + (18).ToString

            End If

            If character = "i" Then

                str = str + (1).ToString
            End If

            If character = "I" Then

                str = str + (count ^ 2).ToString

            End If

            If character = "j" Then

                str = str + (2 * CLng(Math.Sqrt(count))).ToString
            End If

            If character = "J" Then

                str = str + (count ^ 3).ToString

            End If

            If character = "k" Then

                str = str + (2 * count ^ 3).ToString
            End If

            If character = "K" Then

                str = str + (1 * CLng(Math.Sqrt(count + 2 * t))).ToString

            End If

            If character = "l" Then

                str = str + (7 * CLng(Math.Sqrt(count + 5))).ToString
            End If

            If character = "L" Then

                str = str + (1 + CLng(Math.Sqrt(count * 2))).ToString

            End If

            If character = "m" Then

                str = str + (2 + CLng(Math.Sqrt(count * 3))).ToString
            End If

            If character = "M" Then

                str = str + (7 + CLng(Math.Sqrt(count * 6 * t))).ToString

            End If

            If character = "n" Then

                str = str + (8 + CLng(Math.Sqrt(count * 10))).ToString
            End If

            If character = "N" Then

                str = str + (2 + CLng(Math.Sqrt(count + 2))).ToString

            End If

            If character = "o" Then

                str = str + (99 + CLng(Math.Sqrt(count * 2))).ToString
            End If

            If character = "O" Then

                str = str + (3 * CLng(Math.Sqrt(count * 2))).ToString

            End If

            If character = "p" Then

                str = str + (3 + CLng(Math.Sqrt(count * 3))).ToString
            End If

            If character = "P" Then

                str = str + (2 + CLng(Math.Sqrt(count * 9))).ToString

            End If

            If character = "q" Then

                str = str + (count + CLng(Math.Sqrt(count * t * 2))).ToString
            End If

            If character = "Q" Then

                str = str + (7 + CLng(Math.Sqrt(count * count + 3))).ToString

            End If

            If character = "r" Then

                str = str + (51 + CLng(Math.Sqrt(count * 2))).ToString
            End If

            If character = "R" Then

                str = str + (11 + CLng(Math.Sqrt(count * 25))).ToString

            End If

            If character = "s" Then

                str = str + (3 ^ (count + 1)).ToString
            End If

            If character = "S" Then

                str = str + (count * count * 31).ToString

            End If

            If character = "t" Then

                str = str + (17).ToString
            End If

            If character = "T" Then

                str = str + (CLng(t + 9) * 2).ToString

            End If


            If character = "u" Then

                str = str + (56).ToString

            End If


            If character = "U" Then

                str = str + (12 * count).ToString

            End If


            If character = "v" Then

                str = str + (count).ToString

            End If


            If character = "V" Then

                str = str + (7 ^ (count - 1)).ToString

            End If


            If character = "w" Then

                str = str + (33 * count).ToString

            End If


            If character = "W" Then

                str = str + (32 * count).ToString

            End If


            If character = "x" Then

                str = str + (19 * count).ToString

            End If


            If character = "X" Then

                str = str + (6).ToString

            End If


            If character = "y" Then

                str = str + (CLng(120 / count)).ToString

            End If


            If character = "Y" Then

                str = str + (CLng(180 / count)).ToString

            End If


            If character = "z" Then

                str = str + (CLng(1120 / count)).ToString

            End If


            If character = "Z" Then

                str = str + (CLng(268 / count)).ToString

            End If


            If character = "0" Then

                str = str + (CLng(1265 / count)).ToString

            End If


            If character = "1" Then

                str = str + (CLng(120 / count) + 1).ToString

            End If


            If character = "2" Then

                str = str + (CLng(120 / count) + 15).ToString

            End If


            If character = "3" Then

                str = str + (CLng(120 / count) * 3).ToString

            End If


            If character = "4" Then

                str = str + (CLng(120 / count) * 5).ToString

            End If


            If character = "5" Then

                str = str + (CLng(1320 / count) + 7).ToString

            End If


            If character = "6" Then

                str = str + (CLng(122 / count) + 3).ToString

            End If


            If character = "7" Then

                str = str + (CLng(120 / count) + count).ToString

            End If


            If character = "8" Then

                str = str + (CLng(1208 / count)).ToString

            End If


            If character = "9" Then

                str = str + (CLng(120 / count) + 123).ToString

            End If


            str = str + (CLng(t * i)).ToString

        Next


        Return str

    End Function
 
Level 16
Joined
Mar 24, 2017
Messages
827
That's very true, but at the same time her spells are powerful and she is well balanced, her ultimate in particular is very good
 
Level 16
Joined
Mar 24, 2017
Messages
827
I already told you guys everything about that, it was fun, tedious and yet enjoyable at the same time

Very weird in terms of the grading though, you had a bunch of short quizzes that were worth a large chunk of your grade, and then you get a huge final exam, needless to say it wasn't what I expected at all.
 
Level 16
Joined
Mar 24, 2017
Messages
827
Not really, it's more annoying having to worry about a quiz every two weeks, plus the final was really huge

anyway back to Silventria discussion we need more lore!
 
Level 16
Joined
Mar 24, 2017
Messages
827
I dont know about the Garithos, but Darvel is just a minor character, he was never supposed to do much except deliver a one liner when you attack his base, from what I recall that was it
 
Level 16
Joined
Mar 24, 2017
Messages
827
From what Blake said

"State to the north, their capital is atop the frozen plateau, their involvement in the conflict is very limited because the rebels do not threaten or attack them directly, they oppose Milrein's expansionist and military policies but have little success in changing any of these policies"

Their element is obviously ice, so their specialty is ice magic, Blake said they have the most powerful elite units because of the harsh weather in their homeland
idk who their leader is
 
Level 12
Joined
Jun 20, 2017
Messages
959
interesting, so

Silventria - wind elemental based
Milrein - electric elemental based
Nesemene - ice elemental based
Rebels - fire elemental based

what about all the other place?
 
Level 16
Joined
Mar 24, 2017
Messages
827
That is correct, I'm not sure about all the other places, but basically there is at least 1 place that is water elemental based, another that is earth based, as well as others
 
Level 16
Joined
Mar 24, 2017
Messages
827
it was in the works last time I checked,

he was supposed to have a devotion aura that granted like +10 defense, really weird feature....
 
Level 16
Joined
Mar 24, 2017
Messages
827
Yup, that Marshal was supposed to have like 2,000hp and a whole group of Ironguards around him, supposed to have been a crazy mission, but then apostle and his buddy left so we got nowhere
 
Level 16
Joined
Mar 24, 2017
Messages
827
Yea, I wonder what it would've turned out to be like, but we have better missions, like the mission where you have to face off against the forces of Eliver the diviner where you have to destroy his palace, that mission should be gold
 
Level 9
Joined
Feb 28, 2017
Messages
195
i played the demo, it was good but the mission still needs lots of polishing and things added to it to make it feel complete
 
Level 9
Joined
Feb 28, 2017
Messages
195
it is one of those epic missions where you have to basically "crawl" from the bottom of the map to the top and destroy a particular building, crawl because the map is filled with a very aggressive enemy forces, the final enemy base has these spectral knights, they have over 1200hp have resistant skin, spell immunity and do massive damage to both ground and air units

what a challenge
 
Level 9
Joined
Feb 28, 2017
Messages
195
no, i just like those missions in particular, where you have to battle epic forces all across the map in order to destroy a key building or buildings (I hate missions where you just have to destroy everything, too much like a melee game for me)
 
Level 9
Joined
Feb 28, 2017
Messages
195
well obviously i prefer a challenge, but i dont mean a challenge that makes me want to punch a hole through my screen
 
Level 9
Joined
Feb 28, 2017
Messages
195
i already explained why i dont like arkain, had nothing to do with difficulty, go back and read it if you like , im not explaining it again
 
Level 16
Joined
Mar 24, 2017
Messages
827
Lol, something like that, but seriously e-mail me or something when she's around, my messenger app is broken for some reason
 
Status
Not open for further replies.

Similar threads

Top