Staredit Network

Staredit Network -> Miscellaneous -> Trivia
Report, edit, etc...Posted by D)s-202 on 2005-12-05 at 17:57:03
I figured out what bot im using but now i need to find starcraft trivia can anyone please help me or suggest a link to a starcraft trivia file?
Report, edit, etc...Posted by Centreri on 2005-12-05 at 18:16:12
Isn't this your third thread on this topic? It's getting tedious..
Actually, I don't know where you can get trivia files sly.gif
Report, edit, etc...Posted by Diggidoyo on 2005-12-05 at 18:26:47
Yeah, the very least you can do is bump your old topic.

Have you ever heard of "Google"?

Googling "Starcraft Tivia" produces some nice results.
Report, edit, etc...Posted by warhammer40000 on 2005-12-05 at 18:29:34
He just wants a bigger post count... Sadly, he doesnt realize hes in null...

And google search like he said, duh.
Report, edit, etc...Posted by D)s-202 on 2005-12-05 at 20:01:20
un true i checked google. NOTHING and no this isnt my third topic like this. Theyre different. And im not a total dimwit. I just doubt people will post in that topic.
Silver i doubt yu dont know. You brag about having the best starcraft trivia around don't yu?
QUOTE
come on D)s-202 you KNOW i have better trivia then you
Report, edit, etc...Posted by KrAzY on 2005-12-05 at 23:40:13
QUOTE(Silver-Dragon @ Dec 5 2005, 03:16 PM)
Isn't this your third thread on this topic? It's getting tedious..
Actually, I don't know where you can get trivia files sly.gif
[right][snapback]372234[/snapback][/right]


That is really true.
Report, edit, etc...Posted by Diggidoyo on 2005-12-06 at 00:01:41
Yeah if you bump your topic [LEGITAMTLY] with a new question people WILL answer you.


Anyways for your trivia bot you need to have it set up with a program to ask questions and store scores/answers which would look something like:

CODE

Public trivia, fso, trivFile, D2s, score, q(250), a(250), numberQs, qnum, hints, hintstr
Set fso = CreateObject("Scripting.FileSystemObject")
Set score = CreateObject("Scripting.Dictionary")
Private Const trivFolder = "C:\Program Files\StealthBot\"
Private Const scoreFile = "scores.txt"
Private Const trivAccess = -1
Private Const nHints = 3
trivFile = "starcraft.txt"
scTimer.Interval = 10000

Sub Event_Load()
Set tf = fso.OpenTextFile(trivFolder & scoreFile, 1, True)
While Not tf.AtEndOfStream
cLine = Split(tf.ReadLine, "|")
score.Add cLine(0), cLine(1)
Wend
tf.Close
AddChat vbGreen, "Scores loaded!"
Call loadQuestions
End Sub

Sub Event_ServerInfo(Message)
End Sub

Sub Event_ServerError(Message)
End Sub

Sub Event_UserTalk(Username, Flags, Message, Ping)
If Message = myTrigger & "trivia" Then
GetDBEntry Username, myAccess, myFlags
If myAccess >= trivAccess Then
If trivia Then
 trivia = False
 scTimer.Enabled = False
 AddQ "Trivia stopped. Type "& myTrigger & "score to see your score."
Else
 trivia = True
 Randomize
 AddQ "Trivia started. Type "& myTrigger & "trivia to stop."
 Call askQuestion
 scTimer.Enabled = True
End If
End If
ElseIf Message = myTrigger & "score" Then
If score.Exists(Username) Then
AddQ "/w " & D2s & Username & " Your score is: " & score.Item(Username) & "."
Else
GetDBEntry Username, myAccess, myFlags
If myAccess >= trivAccess Then
 AddQ "/w " & D2s &  Username & " Your score is 0."
End If
End If
ElseIf Message = myTrigger & "writescores" Then
GetDBEntry Username, myAccess, myFlags
If myAccess >= trivAccess Then
Call WriteScores
AddQ "Scores written!"
End If
ElseIf Left(Message, 5) = myTrigger & "file" Then
GetDBEntry Username, myAccess, myFlags
If myAccess >= trivAccess Then
trivFile = Mid(Message, 7)
AddQ "Trivia file now set to: " & trivFile
Call loadQuestions
End If
End If
If trivia And LCase(Message) = LCase(a(qnum)) Then
If score.Exists(Username) Then
score.Item(Username) = score.Item(Username) + 1
Else
score.Add Username, 1
End If
AddQ Username & " is correct! The answer was: " & a(qnum) & ". Score: " & score.Item(Username)
Call askQuestion
End If
End Sub

Sub Event_UserEmote(Username, Flags, Message)
End Sub

Sub Event_WhisperFromUser(Username, Flags, Message)
Call Event_UserTalk(Username, Flags, Message, 0)
End Sub

Sub Event_UserJoins(Username, Flags, Message, Ping, Product, Level, OriginalStatstring)
End Sub

Sub Event_UserLeaves(Username, Flags)
End Sub

Sub Event_FlagUpdate(Username, NewFlags, Ping)
End Sub

Sub Event_LoggedOn(Username, Product)
If Product = "VD2D" Or Product = "PX2D" Then D2s = "*"
End Sub

Sub Event_UserInChannel(Username, Flags, Message, Ping, Product)
End Sub

Sub Event_ChannelJoin(ChannelName, Flags)
End Sub

Sub scriptTimer_Timer()
If hints < nHints Then
hints = hints + 1
sHint = Split(hintstr, " ")
hintstr = ""
For i=1 to UBound(sHint)
If sHint(i) = "_" Then
 If Rnd() < .2 Then
  hintstr = hintstr & " " & Mid(a(qnum), i, 1)
 Else
  hintstr = hintstr & " _"
 End If
Else
 hintstr = hintstr & " " & sHint(i)
End If
Next
AddQ "Hint:" & hintstr
ElseIf hints = nHints Then
AddQ "Time's up! The answer was: " & a(qnum) & "."
Call askQuestion
End If
End Sub

Sub Event_PressedEnter(Text)
End Sub


' Executes when the bot recieves a Profile return from the server. KeyName will be one of the following: Profile\Sex Profile\Location Profile\Description
' KeyValue will contain the value of that profile key as a string.

Sub Event_KeyReturn(KeyName, KeyValue)
End Sub

Sub Event_Close()
Call writeScores()
End Sub

Sub loadQuestions()
If Not fso.FileExists(trivFolder & trivFile) Then
AddChat vbRed, "No trivia file found!"
Exit Sub
End If
Set tf = fso.OpenTextFile(trivFolder & trivFile, 1)
lnum = 0
While Not tf.AtEndOfStream
cLine = Split(tf.ReadLine, "*")
q(lnum) = cLine(0)
a(lnum) = cLine(1)
lnum = lnum + 1
Wend
numberQs = lnum
tf.Close
AddChat vbGreen, "Questions loaded!"
End Sub

Sub askQuestion()
qnum = Int(Rnd() * numberQs)
AddQ q(qnum)
hints = 0
hintstr = ""
For i=1 to Len(a(qnum))
hintstr = hintstr & " _"
Next
Call resetTimer
End Sub

Sub resetTimer()
scTimer.Enabled = False
scTimer.Enabled = True
End Sub

Sub writeScores()
sList = score.Keys
Set tf = fso.OpenTextFile(trivFolder & scoreFile, 2)
For i=0 to UBound(sList)
cUser = sList(i)
tf.WriteLine cUser & "|" & score.Item(cUser)
Next
tf.Close
End Sub




Then here is some questions you can encode it with


CODE

StarCraft is most popular in this country.*Korea
What was the original ESRB rating for StarCraft?*Mature
The Dropship speeches made references to what movie?*Aliens
What is Duran's first name?*Samir
219XMS87632 was a Terran Marine that was dropped into where?*Abattoir
What is the leader of the Protoss Templar?*Adun
Judicator ____ was an advisor to Koprulu Expeditionary Force.*Aldaris
TV host of the a sporting show on the Galactic Entertainment Network.*John Andrews
Which Zerg Cerebrate commands the second largest Zerg brood?*Araq
Who is the First Mate on the Recovery Vessel Starheaper?*Norris Bailey
Who is the Cerebrate that commanded the largest Zerg Brood?*Daggoth
Who is the Cerebrate that is the master of the Baelrog Brood?*Gorn
Name Daggoth's modified Hyralisk.*Hunter Killer
Name the Mutalisk hero.*Kukulza
Who is the Cerebrate that commands the Fenris Brood?*Nargil
Who is the master of the Zerg Swarms?*Overmind
One of the eldest living Protoss. Martriarch of the Dark Templar tribes of Shakuras.*Raszagal
Who is the commander in the Sons of Korhal?*Jim Raynor
Who is the Vice Admiral of the UED's Expeditionary Force?*Alexei Stukov
This Zerg hero can do 250% of the damage of a regular Ultralisk.*Torrasque
Name the Praetor Mojo's reaver.*Warbringer
Who is the Cerebrate that commands the Garm Brood?*Zasz
This Overlord hero borrowed its name from Norse Mythology.*Yggdrasill
The cheat "There Is No Cow Level" is a reference to what Blizzard game?*Diablo 2
What does the "C" in "Operation CWAL" stand for?*Can't
What does the "W" in "Operation CWAL" stand for?*Wait
What does the "A" in "Operation CWAL" stand for?*Any
What does the "L" in "Operation CWAL" stand for?*Longer
Unit sizes: SCV*small
Unit sizes: Marine*small
Unit sizes: Firebat*small
Unit sizes: Ghost*small
Unit sizes: Vulture*medium
Unit sizes: Siege Tank*large
Unit sizes: Goliath*medium
Unit sizes: Wraith*large
Unit sizes: Dropship*large
Unit sizes: Science Vessel*large
Unit sizes: Battlecruiser*large
Unit sizes: Medic*small
Unit sizes: Valkyrie*large
Unit sizes: Larva*small
Unit sizes: Drone*small
Unit sizes: Zergling*small
Unit sizes: Hydralisk*medium
Unit sizes: Ultralisk*large
Unit sizes: Infested Terran*small
Unit sizes: Broodling*small
Unit sizes: Defiler*medium
Unit sizes: Queen*medium
Unit sizes: Overlord*large
Unit sizes: Scourge*small
Unit sizes: Mutalisk*small
Unit sizes: Guardian*large
Unit sizes: Lurker*large
Unit sizes: Devourer*large
Unit sizes: Probe*small
Unit sizes: Zealot*medium
Unit sizes: Dragoon*large
Unit sizes: High Templar*small
Unit sizes: Archon*large
Unit sizes: Reaver*large
Unit sizes: Shuttle*large
Unit sizes: Observer*small
Unit sizes: Scout*large
Unit sizes: Carrier*large
Unit sizes: Interceptor*small
Unit sizes: Arbiter*large
Unit sizes: Dark Archon*large
Unit sizes: Dark Templar*medium
Unit sizes: Corsair*medium
Name the only Medium-sized Terran unit.*Vulture
Name the Terran ground unit that does concussive damage to both ground and air units.*Ghost
Name the Terran unit that can only attack air units.*Valkyrie
Name the Terran ground unit that does exposive damage to air units.*Goliath
Name the Terran worker.*SCV
Name the Terran air unit that does splash damage.*Valkyrie
Name the Zerg ground unit that does explosive damage.*Hydralisk
Name the spawnable Zerg ground unit that cannot attack.*Larva
Name the only large-sized Zerg ground unit.*Ultralisk
Name the Zerg worker.*Drone
Name the only small-sized Zerg unit with energy.*Broodling
Name the only medium-sized Protoss unit.*Corsair
Name the Protoss unit that can only attack air.*Corsair
Name the Protoss air unit that is permanently cloaked.*Observer
Name the Protoss ground unit that is permanently cloaked.*Dark Templar
Name the large-sized Protoss air unit that cannot attack.*Shuttle
Name the small-sized Protoss ground unit that cannot attack.*High Templar
Name the large-sized Protoss ground unit that cannot attack.*Dark Archon
Name the Protoss ground unit that does splash damage to both air and ground units.*Archon
What are the chances a unit in cover have of being hit? __%*70
What are the chances a unit on a cliff have of being hit? __%*70
Hotkeys: Unit command "M"*move
Hotkeys: Unit command "S"*stop
Hotkeys: Unit command "A"*attack
Hotkeys: Unit command "P"*patrol
Hotkeys: Unit command "H"*hold position
Hotkeys: Terran units "C" (Barracks)*Medic
Hotkeys: Terran units "T" (Factory)*Siege Tank
Hotkeys: Terran units "Y" (Starport)*Valkyrie
Hotkeys: Terran buildings "T"*Missile Turret
Hotkeys: Terran buildings "U"*Bunker
Hotkeys: Terran advanced buildings "F"*Factory
Hotkeys: Terran advanced buildings "I"*Science Facility
Hotkeys: Protoss units "K" (Gateway)*Dark Templar
Hotkeys: Protoss units "V" (Robotics Facility)*Reaver
Hotkeys: Protoss units "C" (Stargate)*Carrier
Hotkeys: Protoss buildings "A"*Assimilator
Hotkeys: Protoss buildings "Y"*Cybernetics Core
Hotkeys: Protoss advanced buildings "C"*Citadel of Adun
Hotkeys: Protoss advanced buildings "B"*Robotics Support Bay
Hotkeys: Zerg units "M" (Hatchery)*Mutalisk
Hotkeys: Zerg units "F" (Hatchery)*Defiler
Hotkeys: Zerg buildings "E"*Extractor
Hotkeys: Zerg buildings "V"*Evolution Chamber
Hotkeys: Zerg advanced buildings "N"*Nydus Canal
Hotkeys: Zerg advanced buildings "D"*Defiler Mound
Which spell has the highest range?*Parasite
Which spell has the lowest range?*Consume
Which spell has a variable range?*Nuke
Which unit has the spell with the variable range?*Ghost
Which spell has the lowest range of all Terran spells?*Heal
Which spell has the lowest range of all Protoss spells?*Hallucination
Which spell has the lowest range of all Zerg spells?*Consume
Which spell has the highest range of all Zerg spells?*Parasite
Cheats: Invincible units.*Power Overwhelming
Cheats: Gives you 10,000 gas and minerals.*Show Me The Money
Cheats: Speeds construction.*Operation CWAL
Cheats: Unlimited energy.*The Gathering
Cheats: Ends game with loss.*Game Over Man
Cheats: Prevents mission from ending.*Staying Alive
Cheats: Completes current mission.*There Is No Cow Level
Cheats: Free Minerals.*Whats Mine Is Mine
Cheats: Free Gas.*Breathe Deep
Cheats: Gives all upgrades.*Something For Nothing
Cheats: Shows Entire Map*Black Sheep Wall
Cheats: Free upgrades to units.*Medieval Man
Cheats: Ability to build all buildings.*Modify The Phase Variance
Cheats: Disable fog of war.*War Aint What It Used To Be
Cheats: Ability to build beyong the support limit.*Food For Thought
Cheats: Level skipping cheat.*Ophelia
Unit Speech: "I told 'em I was claustrophobic... I gotta get outta here!"*SCV
Unit Speech: "We gotta move."*Marine
Unit Speech: "Nothing like a good smoke."*Firebat
Unit Speech: "He's dead Jim."*Medic
Unit Speech: "You call down the thunder."*Ghost
Unit Speech: "I dig."*Vulture
Unit Speech: "What is your major malfunction?"*Siege Tank
Unit Speech: "Checklist completed... SOB!"*Goliath
Unit Speech: "I gotta get me one of these!"*Wraith
Unit Speech: "Strap yourselves in boys!"*Dropship
Unit Speech: "Ah, the ship, out of danger?"*Science Vessel
Unit Speech: "Shields up, weapons online."*Battlecruiser
Unit Speech: "This is very interesting, but stupid."*Valkyrie
Unit Speech: "I am wretched."*Infested Terran
Unit Speech: "Honor guide me."*Zealot
Unit Speech: "Drop your weapons, you have 15 seconds to comply."*Dragoon
Unit Speech: "Your thoughts betray you."*High Templar
Unit Speech: "Power overwhelming!"*Archon
Unit Speech: "You could no more evade my wrath."*Dark Templar
Unit Speech: "Darkness overpowering."*Dark Archon
Unit Speech: "One small step for man, one giant...STOP POKING ME!"*Observer
Unit Speech: "Adjusting neural transmission."*Scout
Unit Speech: "...and still you procrastinate!"*Carrier
Unit Speech: "And now for your first lesson."*Arbiter
Unit Speech: "Zephram Cochran, is that you? What did you do to your hair?"*Corsair
Planets: Jungle world. Homeworld of the Protoss. Furious seas.*Aiur
Planets: Remote ash world. Zerg base of operations.*Char
Planets: In the Milky Way galaxy. Third planet in the solar system. Possesses one moon.*Earth
Planets: In the Koprulu Sector. Second Terran planet.*Mar Sara
Planets: Homeworld of the Dark Templar. Twilight world. Devoid of plant life.*Shakuras
Planets: In the Koprulu Sector. Primary Confederate world. Infested Stukov's base.*Tarsonis


Or if you don't like those then go here for an even bigger list (wouldn't fit pinch.gif )

Now you can lock this and all your other topics. closedeyes.gif
Report, edit, etc...Posted by KrAzY on 2005-12-06 at 00:03:43
Next time, give scripts by PM.
Report, edit, etc...Posted by Diggidoyo on 2005-12-06 at 00:04:44
Why's that?
Report, edit, etc...Posted by KrAzY on 2005-12-06 at 00:19:47
Private Message.
Report, edit, etc...Posted by Diggidoyo on 2005-12-06 at 00:35:12
I asked "why" not "what"
Report, edit, etc...Posted by KrAzY on 2005-12-06 at 20:57:31
Because, that's a long comment and should be a PM.

D)s-202, why not just make 3 questions in 1 thread?
Report, edit, etc...Posted by Diggidoyo on 2005-12-06 at 22:20:41
Are long PM's displayed better?

ADDITION:
Are long PM's displayed better?
Report, edit, etc...Posted by KrAzY on 2005-12-06 at 22:24:46
Yes, because there's no such PMs on top or bottom of that.
Report, edit, etc...Posted by Syphon on 2005-12-07 at 19:54:00
There is no cow level refers to diablo 1, not 2. Diablo 2 came out after starcraft and the cow level in it reffered to both starcarft and diablo. Pwnt.
Report, edit, etc...Posted by Diggidoyo on 2005-12-08 at 05:07:58
First off you actually read through that? blink.gif

Second, are you sure? Becuase the cow level cheat is in Diablo 2. Althought there are cows in diablo 1, theres no cow LEVEL.
Report, edit, etc...Posted by Syphon on 2005-12-08 at 15:18:41
QUOTE(Diggidoyo @ Dec 8 2005, 05:07 AM)
First off you actually read through that? blink.gif

Second, are you sure? Becuase the cow level cheat is in Diablo 2. Althought there are cows in diablo 1, theres no cow LEVEL.
[right][snapback]374154[/snapback][/right]


Yes. It took about 47 seconds.

Yes, read the last part of your sentence. They put the cheat in starcraft to debunk all the rumours. Diablo was jsut one of those games that everyone had rumours about, like most people believed in a hidden level. Something like using townportal between two cows, it turns green BAM cow level. They put one in diablo 2 as a tribute to diablo 1.
Report, edit, etc...Posted by Diggidoyo on 2005-12-08 at 15:39:32
Haha. Good to know.... but its useless information. Maybe they'll have it on Jeopardy some day. wink.gif
Next Page (1)