AoS <<Realms of the Genesis : Reborn>>

waaaks!

Zinctified
Reaction score
255
bump

im here to announce that, my pc has crashed...joke! yesterday i really thought that my pc was broken again...but i tried it today and it works perfectly fine...

need item ideas please, with names gold cost, requirements and effects
 

Magentix

if (OP.statement == false) postCount++;
Reaction score
107
How about this:

<Recipe Name>
- 1 <Potion of health over time>
- 1 <Potion of mana over time>

==> 1 Potion of health and mana over time
Recipe advantage: Where the 2 lesser potions regen over, let's say, 30 seconds; the combined potion regens the same amount over 15 seconds.


Example:

300hp/30s potion + 200mana/30s potion = 300hp+200mana/15s potion.
 

Zack1996

Working on a Map
Reaction score
68
Model

Hi, I have made a response to you request on THW for the model of Nerzhul. I made it but you have yet to respond so I checked here.
Its sad but the model is greater in size than the other one (mine is 250+kb) but IMO its better, here it is. Its not tested though :p.
Anyway, I played this map and it really could do with more triggered spells.

Some ideas:
Rip some things off your old maps! (Jk)
Items idea:
Potion of reverse, costs 1000 gold
Causes damage to heal you and healing to damage you (triggered XD)
Ring of Rejuvanation, recipe, 600 gold
Ring of Regen, (forgot the gold cost)
Potion of health and mana (XD the one stated above), (cost)
results in...
Ring of Rejuvanation, gives
3 hp regen
Rejuvanate- Regenerates (1/2xoriginal regen from potion), cooldown, 60 seconds, charges unlimited.
 

waaaks!

Zinctified
Reaction score
255
thanks for the ideas....but i think that potions must not be combined into a greater potion, because it would be too easy...i mean, the player doesnt waste inventory space for carrying a mana and life potion, because the 2 potions are cheap, getting a high regen mana and life potion will be a piece of cake

also the mana and life potions are charged, when u have 10 life potions in ur inventory, and u will buy 1 mana potion, it will combine into 1 larger potion, wasting 9 charge of the life potion

@Zack1996
i viewed the model in magos model editor, but why does the model has no arms when animating?
BTW melee heroes inside the map has less triggered spells...while the 4 heroes below them has more triggered spells than the melee ones
anyways thanks
 

Zack1996

Working on a Map
Reaction score
68
Model

I fixed the model, so here. I'm still unhappy about the file size though :(.
Try squishing it. Its still not tested ingame :p.
 

waaaks!

Zinctified
Reaction score
255
bump
4th post and no replies

Updated to RotG Reborn v2.07
please give feedback
 

Zack1996

Working on a Map
Reaction score
68
AHH! Quadraple post! Banned! JK. Anyway, I'll test this map and give feedback ASAP :D.
 

waaaks!

Zinctified
Reaction score
255
i think it will took longer before 2.08 is released, because i need to create 8 heroes for it, and im still working on the third hero, but i already finished sponge bob, thx to olofmoleman btw, because he's the one who made spongebob
 

R@i_no_Wyrm

New Member
Reaction score
43
lol, what's his ability? Adding famous characters into an AoS will make the game quite funny tough
 

cr4xzZz

Also known as azwraith_ftL.
Reaction score
51
Ok, I finally have an internet connection. Sorry to answer your request after ~a month but now I have the opportunity. Here's the item exchanger you asked.

JASS:

library ItemExchanger initializer InitTrig_ItemExchanger

globals
    private integer array OLD_ITEM
    private integer array NEW_ITEM
endglobals

// This is where you should set the items that will be removed (OLD_ITEM) and replaced with the new ones (NEW_ITEM)
// You may be asking how it works?
// Well, when a unit takes item, a loop will be ran to check which item it took.
// If it detects OLD_ITEM it will replace it with NEW_ITEM with the same array value.

// E.g. Bob picks Potion which is OLD_ITEM[15]. Loop runs and detects OLD_ITEM[15].
//        Bob loses OLD_ITEM[15] and receives NEW_ITEM[15].

// That&#039;s it. ^^
private function Execute takes nothing returns nothing
// start from array 0 and increase by 1 
    set OLD_ITEM[0] = &#039;pghe&#039;
    set OLD_ITEM[1] = &#039;rat6&#039;
    
    set NEW_ITEM[0] = &#039;pgma&#039;
    set NEW_ITEM[1] = &#039;rat9&#039;
endfunction
// End. Don&#039;t touch past this point <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite7" alt=":p" title="Stick Out Tongue    :p" loading="lazy" data-shortname=":p" />

private function Actions takes nothing returns nothing
    local unit u = GetTriggerUnit()
    local item i = GetManipulatedItem()
    local integer l = 0
    local item a
    
    loop
        exitwhen OLD_ITEM[l] == null or GetManipulatedItem() == null
        if GetItemTypeId(GetManipulatedItem()) == OLD_ITEM[l] then
            call UnitRemoveItem(u, i)
            call RemoveItem(i)
            set a = CreateItem(NEW_ITEM[l], GetUnitX(u), GetUnitY(u))
            call UnitAddItem(u, a)
        endif
        set l = l + 1
    endloop
    
    set u = null
    set i = null
    set a = null
endfunction

function InitTrig_ItemExchanger takes nothing returns nothing   
    local trigger trig = CreateTrigger()
    call TriggerRegisterAnyUnitEventBJ(trig, EVENT_PLAYER_UNIT_PICKUP_ITEM)
    call TriggerAddAction(trig, function Actions)
    call Execute()
endfunction

endlibrary

It is executed when a unit takes an item. Wasn't sure what you wanted but if you don't want that I'll edit it and give you only a function call (at least if it's not too late and you already have one exchanger.. ^^).
EDIT: Wait, I forgot to test a stupid issue that might happen. I'll write after ~10 mins to tell you if it's not a problem.
EDIT2: Ok, no problems at all. I guess it will work perfectly ;)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    So what it really is me trying to implement some kind of better site navigation not change the whole theme of the site
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top