Search results

  1. pudu

    Chinese Text in OpenBOR

    Hello, my previous file already has all the traditional and simplified fonts. You just need to use the translation or download a Chinese input method.
  2. pudu

    Chinese Text in OpenBOR

    您还可以在图像中添加任何您想要的文本,但您的图像会使用我编写的脚本进行编辑。我以前玩过这个游戏。
  3. pudu

    Chinese Text in OpenBOR

    This situation requires script editing, as shown in the following image
  4. pudu

    Chinese Text in OpenBOR

    I'll list them for you and you'll understand. font requires folder image default font is 00 other,You need to add fontmbs 1 1 1 1 1 in menu.txt to activate other fonts. Once there are more than 10 fonts, it will be invalid.
  5. pudu

    Chinese Text in OpenBOR

    Hello, I will provide you with a sample of Chinese fonts and you can use them completely.
  6. pudu

    In Progress Ninja Warriors Again RX

    I haven’t updated the game progress for a long time. Currently version 2.0 has been completed, but the final stage is still being tested. All enemies and boss selections have been completed and a challenge mode (three challenge methods) has been added, which will be announced soon. 2.0 is only...
  7. pudu

    Complete Double Dragon Reloaded alternate - Updated version!

    The most common modified version on YouTube is that it was modified by Koreans, but there are other less conspicuous modified versions.
  8. pudu

    Complete Double Dragon Reloaded alternate - Updated version!

    Let me clarify, those YouTube hacks Double Dragon Reloaded were modified by Koreans and not by Chinese.
  9. pudu

    Ranking question.

    set Arcade lives 3 credits 3 custfade 50 cansave 2 nosame 0 noshare 1 disablehof 1 ifcomplete 1 scene data/scenes/00.txt scene data/scenes/10.txt You can activate the Hall of Fame by adding "scene" to levels.txt, if you want to activate it elsewhere you need to edit the script.
  10. pudu

    Ranking question.

    You can also save your high score at the end of the game if(openborvariant("in_gameoverscreen")){ changeScore(0); changeScore(1); }
  11. pudu

    Ranking question.

    This script requires text to save the ranking record. You can save it through the following code. For example: the last 13txt of each stage. levels.txt branch Stage_1 scene data/scenes/00.txt scene data/scenes/10.txt branch 1-1 z 147 207 197 file Data/Levels/1-1.txt scene...
  12. pudu

    Ranking question.

    Yes, in fact kunio has already done it, you can activate the Hall of Fame anywhereif(openborvariant("in_halloffamescreen") || openborvariant("current_scene") == "data/scenes/hof.txt"){I play a certain scene text in the game to activate it
  13. pudu

    Ranking question.

    First you need a custom Hall of Fame like SOR2X and then you can activate the Hall of Fame elsewhere. KunioLA also does this.
  14. pudu

    Complete kunioLA

    New UI effect: The health of players and enemies will be briefly displayed in gray when hit, similar to the heavy hit effect in fighting games.
  15. pudu

    In Progress Ninja Warriors Again RX

    Now that the BOSS selection has been completed, the progress may be slower. Next, there are enemies and challenge mode. It will take some time to complete the update
  16. pudu

    Killing Off SpawnBind Entity When Parent Entity Gets Attacked

    You can add an anim follow1 to the summon body and then the player will play anim follow1 when he is not in freespecial2. void main() { void self = getlocalvar("self"); void parent = getentityproperty(self, "parent"); void vAniID = getentityproperty(parent,"animationID"); if(!vAniID ==...
  17. pudu

    Killing Off SpawnBind Entity When Parent Entity Gets Attacked

    void main() { void self = getlocalvar("self"); void parent = getentityproperty(self, "parent"); void vAniID = getentityproperty(parent,"animationID"); if(vAniID != openborconstant("ANI_freespecial2")){ killentity(self); } } Put the script into the "burnknuc" entity script...
  18. pudu

    Complete kunioLA

    updated.c if(openborvariant("in_level")){ joinOldChar(0); joinOldChar(1); } } void joinOldChar(int p) {//Add old characters if(getplayerproperty(p,"joining") == 1){ if(getglobalvar("oldChar"+p) != NULL()){ changeplayerproperty(p...
  19. pudu

    Complete kunioLA

    This is a function to join and save old characters. When players join, they can save old characters. In other words, they can directly skip the default sorting and directly select the previous characters.
  20. pudu

    Complete kunioLA

    No, I set 6 1ups in all levels, and the score can increase by about 4 lives, which is enough for many players to complete the game, but the game is not difficult. After playing it a few times, I think it is possible to complete the game with 1 life. The game has some skills for defeating bosses...
Back
Top Bottom