2 Questions (Multiboard, Camera)

Pharaoh_

The epic journey will soon begin... Prepare!
Reaction score
136
1) Multiboard question: I have 2 rows that are supposed to display some things. Each thing should first be displayed in the second row and then if another thing is about to be displayed, the text of the second row will be transferred on the first row and the new thing will be displayed normally in the second row; like game messages. So, it will be like this:

Code:
---------------- (Row 1, blank)
New Quest - Ashenvale (Row 2)

(A new action is taking place, which is a receive of a new quest, called "Barrens")

So, it should look like this:

New Quest - Ashenvale (Row 1)
New Quest - Barrens (Row 2)

Then, a third action, called Icecrown Glacier

So:
New Quest - Barrens (Row 1)
New Quest - Icecrown Glacier (Row 2)

[You can see that Ashenvale quest is no longer there]

It's like i want to define what text is written on the second row and transfer it on the first row when a new thing is happened.

2) Camera: In the World Editor, scrolling your mouse wheel will result zoom in and zoom out. How to achieve zoom in and zoom out in-game?
 

Ancient-wolf

New Member
Reaction score
22
2) Camera: In the World Editor, scrolling your mouse wheel will result zoom in and zoom out. How to achieve zoom in and zoom out in-game?

>when ever you type -zoom (distance) you get zoomed into that position. try make triggers about it. i dont think you can use scroll like on WE in-game because scroll is already bind to another action.
 

Pharaoh_

The epic journey will soon begin... Prepare!
Reaction score
136
No, i just gave that example to show you what exactly i mean with zoom in and zoom out. I want it so that when i select a unit, camera zooms in that unit. I know i have to make triggers, but what are they?!
 

rDs_RaVeN

New Member
Reaction score
14
Code:
Zoom In
    Events
        Player - Player 1 (Red) Selects a unit
    Conditions
    Actions
        Camera - Pan camera for Player 1 (Red) to (Position of (Triggering unit)) with height -50.00 above the terrain over 0.00 seconds
 

Pharaoh_

The epic journey will soon begin... Prepare!
Reaction score
136
Didn't work :/ It just focuses above the selected unit. (Plus, you used "selling unit". It has to be "triggering unit" to refer on that one) Thanx anyway.
 

rDs_RaVeN

New Member
Reaction score
14
do you want it to folow the unit?
Code:
Plus, you used "selling unit". It has to be "triggering unit" to refer on that one

miss click in trigger editor
 

Pharaoh_

The epic journey will soon begin... Prepare!
Reaction score
136
No, i want to zoom in, like in World Editor, where you scroll the mouse wheel and it results zoom in the point your current camera view is focusing.
 

AceHart

Your Friendly Neighborhood Admin
Reaction score
1,495
Display Stuff
- Set Row1 = Row2
- Set Row2 = Stuff
- Multiboard - Set the text for item ... to Row1
- Multiboard - Set the text for item ... to Row2


Set Stuff = "This is some new text"
Trigger - Run <Display Stuff>, ignoring conditions
 

rDs_RaVeN

New Member
Reaction score
14
No, i want to zoom in, like in World Editor, where you scroll the mouse wheel and it results zoom in the point your current camera view is focusing.
something like this?
Code:
Zoom In
    Events
        Player - Player 1 (Red) types a chat message containing -zoom in as An exact match
    Conditions
    Actions
        Camera - Pan camera for Player 1 (Red) to (Target of current camera view) with height -50.00 above the terrain over 0.00 seconds
Code:
Zoom In More
    Events
        Player - Player 1 (Red) types a chat message containing -zoom in more as An exact match
    Conditions
    Actions
        Camera - Pan camera for Player 1 (Red) to (Target of current camera view) with height -100.00 above the terrain over 0.00 seconds
 

Pharaoh_

The epic journey will soon begin... Prepare!
Reaction score
136
AceHeart, i am not 100% sure for something. I have 2 rows, remember? Ok, i set the Row1 and the Row2 variables, but now i need to set them properly. The first "- Multiboard - Set the text for item ... to Row1" is what row for? The first or the second? And then you gave me this: - "Multiboard - Set the text for item ... to Row2" If i set it Row1=Row2, it will result the same message on both rows at the same time. I didn't mean that, unless i didn't get your trigger. I want an action to be displayed in Row2, then if another action is taking place, display it in Row2 and display the previous one on Row1 now. If a third action is taking place, display it again in Row2, previous action of Row2 will again be transferred on Row1 and the very first action will disappear, since i only have 2 rows.
Please, if you still think that's the trigger, could you explain it better? It seems that i will get a different effect.
 

AceHart

Your Friendly Neighborhood Admin
Reaction score
1,495
Try it out? :p


> - Multiboard - Set the text for item ... to Row1
> - Multiboard - Set the text for item ... to Row2

"..." depends on where you want it.

Example:

- Multiboard - Set the text for item col 1, row 1 to Row1
- Multiboard - Set the text for item col 1, row 2 to Row2

No idea what your board looks like, but I guess you know where you want that text to show.
 

Pharaoh_

The epic journey will soon begin... Prepare!
Reaction score
136
Ok, i tried it, but there is a problem: My variable is Real (at first it was Integer), and it is supposed to display damage taken. Set Row2 = (((Real((Name of (Damage source)))) + (Real( has damaged you for ))) + ((Damage taken) + (Real(.)))).
What happens in-game: It just displays the damage taken. It works, with row per row and thank you (even if i did not add the "Trigger - Run ingoring conditions", but it still works), but i don't get the result of the Variable, even if i got it in the row 2 to display row2 variable, it just shows damage taken; the name of damage source and all of the rest are gone. Why?
 

AceHart

Your Friendly Neighborhood Admin
Reaction score
1,495
> Real((Name of (Damage source)))

That makes little to no sense...

Multiboards show strings, nothing else.

Set Row2 (string!) = Name of (Damage source) + " has damaged you for " + String(Damage taken)


Other than that, cells also have some width.
If the text inside is too long, you won't see it all.
 

Pharaoh_

The epic journey will soon begin... Prepare!
Reaction score
136
No, i adjusted the width of the cell already. I think it has to do with that string thing. I thank you very much! +rep my love :D Oh, is there any chance you know the camera issue? Because rDs_RaVeN's suggestion didn't work. Know that my camera will already have an angle. Actually, it will work like campaign (which has that 3d model) and when i select that unit it will zoom towards its face. Any suggestion on that?
 

rDs_RaVeN

New Member
Reaction score
14
No, i adjusted the width of the cell already. I think it has to do with that string thing. I thank you very much! +rep my love :D Oh, is there any chance you know the camera issue? Because rDs_RaVeN's suggestion didn't work. Know that my camera will already have an angle. Actually, it will work like campaign (which has that 3d model) and when i select that unit it will zoom towards its face. Any suggestion on that?

log into msn and tell me what you want cause i didnt get it :banghead:
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top