Spell Temporal Fluxuation

mastah_

New Member
Reaction score
5
its a great idea but very buggy...
also a little thing that makes it weird... the name of future self is not same as ur hero....he get a name change in 2 seconds?
 

Pyrogasm

There are some who would use any excuse to ban me.
Reaction score
134
mastah_ said:
also a little thing that makes it weird... the name of future self is not same as ur hero....he get a name change in 2 seconds?
I, uhhh, didn't even think about this. Maybe I'll use a CloneUnit function instead of creating a new hero from scratch... if and when I ever update this spell to be proper.
 

SerraAvenger

Cuz I can
Reaction score
234
You are a dirty stinking alien hiding in a human body.
Don't think for a second that I don't know you have a vJass co-processor inserted in your neural cortex.
And the fact you know just a little too much about quantum physics is not helping your cover either.
//offtopic
But you think your cover was better?
Amongst us humans, there is the golden rule:
Don't dare to apply mammal anatomy on aliens.
Also, we know aliens don't need physical access to computer devices in order to manipulate them.

Yeah, your tries to hide behind false ignorance and to spread false facts have blatantly failed. Humans are not as stupid as one might think.

EDIT: Come to think about it, they are.
EDIT2: Forgot I'ld have to use the edit button in order to make the change appear properly in the databases
//ontopic
Awesome spell, Pyro
Although I didn't get the thing with the flashbacks...
Becomes the future self the past self, or does it just disappear? Is the future self warped out of the dimension or not?
Is there some sort of quantum entanglement between the past and the future heroes?
Please explain that part again. (The 'What happens when the future self thingie is warped back' part, that is)

EDIT3:
Umm... They don't take integer i. They take integer this, afaict. Also, struct allocation & destruction do look different... Yours would overwrite itself.
Something like that (don't have a dJASS compiler here, but you should be able to read it anyway):
JASS:
// User Vars
globals
    integer X
    integer Y
end

// Self initialized
globals
    integer countIndex= 0
    integer countInfo = 0
    integer array Index
    integer firstFree = -1
    integer array Free
end

function Alloc( nothing ): integer
    integer this
    integer info
    if firstFree == - 1 then 
        countIndex += 1 // min index needs to be 0 for null struct
        this = countIndex
    else
        this = firstFree
        firstFree = Free[ firstFree ]
    end
    info = countInfo
    countInfo += 1
    Index[ this ] = info
    // Set vars...
    X[ info ] = 0
    Y[ info ] = 0
    // ...
    return this
end

function Destroy( integer this ): nothing
    integer info = Index[ this ]
    integer oldInfo = Index[ countIndex ]
    Free[ this ] = firstFree
    firstFree = this
    Index[ countIndex ] = info
    // Set vars...
    X[ info ] = X[ oldInfo ]
    Y[ info ] = Y[ oldInfo ]
    // ...
    countInfo -= 1
end
 

Pyrogasm

There are some who would use any excuse to ban me.
Reaction score
134
Meh. I was just winging it then, anyway.

I'll try to give another step-by-step play here:
  1. The past self summons the future self. (So lets say the past self is at time 0 seconds and the future self is at time 8 seconds.)
  2. The past self functions normally and the future self patrols around the past self. (Past self goes from time 0 seconds to 6 seconds; future self goes from 8 seconds to 14 seconds.)
  3. The past self returns to wherever it came from.
  4. Time passes. (6s to 8s)
  5. The past self is now at time = 8 seconds, so he relives what the former future self did when he was at time = 8s to 14s.
  6. The future self (which was the past self until recently) ends up however he ended up at time = 14 seconds.
  7. You are now free to move about the country.
 

Veno

New Member
Reaction score
0
So I realize this spell is majorly old, but I like the idea... I may try to implement something similar with a few modifications:

1. When you use the skill, it summons "future you" to help. He has the same items (a clone) but has X amount more experience (roughly 2-3 levels) - enough that it is not feasible to reach his level in the duration. You can control both units.

2. When you get to the amount of experience for that level (EDIT: when you reach the experience level of "future you"), your hero disappears (through some nice spell effect portal) for the duration ["past you" cast the spell] and returns with more experience (the same amount you earned when you first cast the spell during it's duration).

3. Since there is no "flashback" you can have the disappearance happen much later on from when the spell was cast instead of immediately after and it could occur in a multiplayer game/no paradoxes. This also allows multiple casts between the time warps.
[Essentially, the hero goes through time, but not the player at the keyboard.]

4. Either the duration needs to be really low and/or the player can do something (perhaps pick the location he reappears by moving a dummy unit? see a ghost image on the map at its location? both?) while his hero is off in the past.
 

Pyrogasm

There are some who would use any excuse to ban me.
Reaction score
134
If you want to do that, you're more than welcome to use my code to do whatever you'd like. You can also post your version of the spell in this thread and I'll add it to the first post.

A lot of the methods used in this spell are really out of date, though, because I wrote it when I couldn't use vJASS. I started to remake this spell properly, but I gave up. Not sure why... :p
 

Veno

New Member
Reaction score
0
Well, I only just learned that JASS even existed at all about a week ago so... hah!

Another version just came to mind (which I like way better and it's actually much easier):

You control a hero. You summon "future you" who is about 10 seconds (spell duration) ahead of you in the timeline... identical based on experience. You have 2 heroes, both of which you control for the duration. After the duration, "past you" disappears (this is the beginning of the spell for "future you" but the end of it for "past you"), and you continue playing with 1 hero, "future you".

The hero at time 0 is A.
The hero at time 10 is B.
The hero at time 11+ is C.

At time 0, A summons B.
At time 10, A becomes B and is summoned by A (aka - he vanishes), B becomes C.
You continue playing C.
 

Pyrogasm

There are some who would use any excuse to ban me.
Reaction score
134
Yeah, pretty much.

It needed a vJASS update that never happened, anyway, so it's not really like the spell is any worse off.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    I think we need to add something to the bottom of the front page that shows the Headline News forum that has a link to go to the News Forum Index so people can see there is more news. Do you guys see what I am saying, lets say you read all the articles on the front page and you get to the end and it just ends, no kind of link for MOAR!
  • The Helper The Helper:
    Happy Wednesday!
    +1

      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