Search results

  1. Crimsondeath

    I lost my job this month. I hope you get a job soon, I'll follow your example 🫡. Merry Christmas!

    I lost my job this month. I hope you get a job soon, I'll follow your example 🫡. Merry Christmas!
  2. Crimsondeath

    Complete Neon Lightning Force

    @NED: Thanks man, I think I take that background stage from an existing OpenBOR project in 2015, but I totally forget the name... Does anyone know a good emulator or tool to rip this kind of graphic? @O Ilusionista: Good idea :D . ------------------------------------------- Ok, Hi to...
  3. Crimsondeath

    How to properly get or change "Defense" value?

    @O Ilusionista : IOpenBoR v3.0 Build, Compile Date: May 12 2023. Maybe I have to do the same as you, but I'm using this for changing the computer AI entities behavior. For example: "BossPunk" can use 3 of 4 of his Freespecials. The 4th Freespecial is locked (with and energycost 999 xd)...
  4. Crimsondeath

    How to properly get or change "Defense" value?

    Hi again, I'm using this script as onmodelcopyscript when enemies pick up a weapon or I give the weapon to them by special events: The problem is that some "defense" values aren't changed properly (and don't know why). For example: I make an enemy inmune to ATK_NORMAL and very resistant to...
  5. Crimsondeath

    Complete Neon Lightning Force

    @O Ilusionista : Sorry the late reply man and thanks for the explanation. About the scrolling background yeah I need to fix that. You mean the falling animation? when they touch the ground? Maybe they should be rolling when they touch the ground or something (?). I'm lack of resources and...
  6. Crimsondeath

    Solved Helicopter in the background

    I used the code as "onmovezscript" instead of "onmovexscript" and works great :D . Thanks again @O Ilusionista .
  7. Crimsondeath

    Solved Helicopter in the background

    Hi again. It's possible to stick an entity to the background and make it moves only in it? I need it for this helicopter enemy: It's also posible that the helicopter balance a little, on the direction he is moving? Here is the full Helicopter Code: Thanks
  8. Crimsondeath

    Get "Thold", "Quake" (and other variables) with onmodelscript?

    Oh well, thanks anyway DC Current(y)
  9. Crimsondeath

    Get "Thold", "Quake" (and other variables) with onmodelscript?

    Hi to everyone I have read the OpenBOR manual. If I understand right, some values from the model header aren't posible to get using "getentityproperty" but there is another way to get it and use it in the onmodelscript? I need the follows to load in the weapons models: thold 21 noquake 1 shadow...
  10. Crimsondeath

    Solved Get "falling death" direction from an Obstacle?

    Thanks both of you, but Kratus solution works the best for my project :D Now obstacle's debris falls in the right way (y) .
  11. Crimsondeath

    Solved Get "falling death" direction from an Obstacle?

    Hi again, When I kill an obstacle their "parts" are throw away in the same direction he is facing (I'm using the tosser & tosserAnim script): I think the issue is when the obstacle dies (and fall) he always face the same direction while falling, no matters if the hit comes from left or right...
  12. Crimsondeath

    Solved Moving Vertically through the Terrain

    Thanks both of you, I already did it with the offset trick, just was for a background decoration :D .
  13. Crimsondeath

    Solved Moving Vertically through the Terrain

    Hi again, it's me mar...erm... I mean Crimsondeath xdddd. Well, umm it's posible to move an entity vertically through the Terrain? I have used : subject_to_basemap 0 no_adjust_base 1 And the entity moves vertically but didn't pass though the ground (terrain). Here is the entity header: name...
  14. Crimsondeath

    Complete Neon Lightning Force

    That's the old version slightly modified by Chavyn, some of his change were applied to the new version :D . ------------------ I keep working on the game, just one stage more to finish it, this is the second bonus stage now It really looks like a biker chase: I posted this video yesterday...
  15. Crimsondeath

    Solved Count killed enemies (?)

    Sorry the late reply, This is what I needed, It's working great now :D . Just one more issue (that is present in the original game too x.x), is when the player 2 joins to the game, while we playing the bonus stage, that Shutdown Openbor but the log didn't shows me the error.
  16. Crimsondeath

    Solved Count killed enemies (?)

    Hi Thanks for the quick reply :D Edit: Ok perfect! I found where to put the script, but there's some little errors too, I'll be posting or editing this comment in a few minutes. Edit 2: Ok looks like the counter is increasing at killing enemies, but now the problem is that only Player 2...
  17. Crimsondeath

    Solved Count killed enemies (?)

    Hi again, I'm remaking the second bonus stage of Neon Lightning Force, so I'm having a little trouble with the enemy killed counter. It doesn't update when an enemy is killed x.x: Here are the code lines I'm using: update.c void main(){ setglobalvar("language", 1)...
  18. Crimsondeath

    Solved Change Player entities Name (?)

    It worked at last! Thank you @Kratus :D . I didn't know I can use an "script.txt" file for alwaysupdate 1 (I was using it on Models.txt xddddd) .
  19. Crimsondeath

    Solved Change Player entities Name (?)

    Hi Kratus, sorry the late answer. I got sick like a week x.x, but I'm better now. I started "language" global variable on update.c. I have noticed that player name is still in english (Isolde), but this happeds only before player loses a life or quit the game going to the title screen, if...
  20. Crimsondeath

    Solved Change Player entities Name (?)

    I'm using a global var to change enemy names for translation purpose on update.c script: void main(){ // Set 0 to English // Set 1 to Spanish setglobalvar("language", 1); } It's working great on enemies using the onspawnscript: void main() { int idioma =...
Back
Top Bottom