need a tester

How did you feel about this map so far?

  • I liked the views, the landscaping, and the concept

    Votes: 1 25.0%
  • I liked the views, and the landscaping

    Votes: 0 0.0%
  • I liked the views, and the concept

    Votes: 0 0.0%
  • I liked the landscaping, and the concept

    Votes: 0 0.0%
  • I liked the views alone

    Votes: 0 0.0%
  • I liked the landscaping alone

    Votes: 2 50.0%
  • I liked the concept alone

    Votes: 0 0.0%
  • I hated this, why did you even think of making this piece of crap?

    Votes: 1 25.0%

  • Total voters
    4
N

Neo_HoJo

Guest
Hi, Warcraft isn't working now that one of my mem chips blew, so i'm going to need someone to test this for me.

Type "view" to change view modes, in one of the view modes you can rotate the camera to the direction that your character is facing.
Someone please find bugs for me, and if it works, than enjoy the demo.

I have fixed my map not to crash (I think). I would re-attach it, but it wont let me after I deleted the old one.
 
S

Swilo

Guest
After loading the map, my game proceeded to draw one animation frame every 2 minutes, which made it completely unplayable. It took me 5 minutes just to quit because my computer wouldn't accept input while the game was freezing.

Something is horribly wrong with the map.

(It isn't my game because other maps work fine)
 
N

Neo_HoJo

Guest
Alright, here's the new(er) version of the map, and today everyone learned something (NEVER have a trigger that has an event of every 0.00 seconds of the game, muchless one per person)
 

Attachments

  • (6)lancer's saga.w3m
    40.7 KB · Views: 165
N

Neo_HoJo

Guest
Hey Swilo, did you download the most recent version of my map??
I'm pretty sure that it's fixed, but I'm in the same boat as HELLSS, and I've gotta save money for NandesKahn, so I won't be able to test my maps for a bit...
 
T

Tikm

Guest
Multiboards

How do you multiboards so that they show up only to 1 person like in heroes and empires or genesis of empires?

(Personal Stats)^_^
 

AgentPaper

From the depths, I come.
Reaction score
107
This should get it's own thread. (after searching for an answer with the handy-dandy search function)
 

Rad

...
Reaction score
228
I would ask but Squad is afk and legacy is offline... This is something I was wondering myself, Im sure it requires JASS maybe its a WEU function (But it aint worth it dont start). Leaderboards can be single-player too. You can also have 1 per player etc. I am using them for stats in my GTA map.
 
C

call me Mike

Guest
ok.. one BIG bug i found when i loaded the map.

the view is stuck to the center of the map. i typed in view but it only changed the direction the view is facing. each time i move the view it reverts back to the center a second later.
i couldn't even move tward my unit to select it at all.

looks like u have a lot of work to do.

o and i didn't vote the poll because i couldnt see anything.
 

DDRtists

ɹoʇɐɹǝpoɯ ɹǝdns
Reaction score
415
Testing, will get back to you in a minite about it :D

I also got the view bug, you might want to fix it ;)

and also the way you made the triggers, you could have made them with 3 triggers with arrays instead of 1 var for each player ;)
 
S

Squad

Guest
Multiboard

To show a multiboard for 1 person only (everyone his own) requires the use of LocalPlayer (jass). This function should only be used if you are 100% sure that it's used correctly because else the game will result into a game split (half the people leave).

Easiest way how to set one up is doing this:

Make a new trigger. In this example i will just use Multiboard as name.
Put as event map initilialisation or when you want the multiboard to show.
Then go to edit, convert to custom text. It will look like this:

---------------------------------------------------------------------
function Trig_Multiboard_Actions takes nothing returns nothing
endfunction

//========================================================
function InitTrig_Multiboard takes nothing returns nothing
set gg_trg_Multiboard = CreateTrigger( )
call TriggerAddAction( gg_trg_Multiboard, function Trig_Multiboard_Actions )
endfunction
---------------------------------------------------------------------

Now we got a trigger with a name and it runs when map starts. Now we just simple add the group which should get a multiboard (Everyone in this example) and put it in the function like this:

---------------------------------------------------------------------
function Trig_Multiboard_Actions takes nothing returns nothing
call ForForce( GetPlayersAll(), function ShowMultiboard )
endfunction
---------------------------------------------------------------------

Next step is we add a variable. In the example i call it Multiboards.
Make it as type Multiboard and an array.

Now for the last function

function MultiboardShow takes nothing returns nothing
if GetEnumPlayer() == GetLocalPlayer() then
call MultiboardDisplayBJ( true, udg_Multiboards[GetConvertedPlayerId(GetEnumPlayer() )] )
endif
endfunction

make sure that the call is put on 1 line (it's too long here it seems). Put this above the other text and you will get as total trigger this:

function MultiboardShow takes nothing returns nothing
if GetEnumPlayer() == GetLocalPlayer() then
call MultiboardDisplayBJ( true, udg_Multiboards[GetConvertedPlayerId(GetEnumPlayer() )] )
endif
endfunction

function Trig_MultiboardShow_Actions takes nothing returns nothing
call ForForce( udg_AttackerGroup, function MultiboardShow )
endfunction

//========================================================
function InitTrig_Multiboard takes nothing returns nothing
set gg_trg_Multiboard = CreateTrigger( )
call TriggerAddAction( gg_trg_Multiboard, function Trig_Multiboard_Actions )
endfunction

Couple more things. Make sure to make a multiboard for every player before this trigger is run and that they are set to not visible. (If you dont want it to run on map inate or want to be sure to make you rmultiboard faster uncheck run at map initalisation on top of the screen. and pick another trigger and add the Gui statement:

Trigger - Run Multiboard <gen> (ignoring conditions)
 
S

Squad

Guest
Sorry for double post i made a small glitch in last final code and can't edit it.

AttackerGroup should be GetPlayersAll() Here is code again.

function MultiboardShow takes nothing returns nothing
if GetEnumPlayer() == GetLocalPlayer() then
call MultiboardDisplayBJ( true, udg_Multiboards[GetConvertedPlayerId(GetEnumPlayer() )] )
endif
endfunction

function Trig_MultiboardShow_Actions takes nothing returns nothing
call ForForce( GetPlayersAll(), function MultiboardShow )
endfunction

//========================================================
function InitTrig_Multiboard takes nothing returns nothing
set gg_trg_Multiboard = CreateTrigger( )
call TriggerAddAction( gg_trg_Multiboard, function Trig_Multiboard_Actions )
endfunction
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Howdy
  • 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
    +1
  • V-SNES V-SNES:
    Happy Friday!
    +1

      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