AoS <<Realms of the Genesis : Reborn>>

waaaks!

Zinctified
Reaction score
256
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
256
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
256
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
256
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.
  • 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