Jump to content

Jayz

Members
  • Posts

    407
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Jayz

  1. https://github.com/rathena/FluxCP/blob/master/config/servers.php 'UseMD5' => false,
  2. Goto your config/application.php and find 'DebugMode' => false, // Set to false to minimize technical details from being output by Flux. WARNING: DO NOT USE THIS OPTION ON A PUBLICALLY-ACCESSIBLE CP. Change it true, then refresh your browser and take screenshot the error
  3. Your fluxcp database is not yet installed
  4. Try replace the original gepard.grf provided by gepard
  5. Your conf/import-tmpl rename to conf/import
  6. Jayz

    Maximum Mob HP

    Edit in your mob_db.txt in the 6th colum thats the mob hp like the color red below ID,Sprite_Name,kROName,iROName,LV,HP,SP,EXP,JEXP,etc,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 1001,SCORPION,Scorpion,Scorpion,24,1109,0,287,etc,,,,,,,,,,,,,4068,1
  7. Try to look in your conf/import/login_athena.txt
  8. Edit your applications.php Find 'UseCleanUrls' => false, // Set to true if you're running Apache and it supports mod_rewrite and .htaccess files. Set false
  9. Make 707 permission your https://github.com/rathena/FluxCP/tree/master/data/tmp
  10. setarray .maptrigger$, // only these maps will trigger this script "all"; // uncomment this to allow load all maps //"guild_vs1", //"guild_vs2", //"guild_vs3", //"guild_vs4", //"guild_vs5";
  11. - script tet12332 -1,{ OnInit: bindatcmd "shop",strnpcinfo(3)+"::tesst"; end; tesst: switch(select("Usable:Potion")){ case 1: callshop "usable",0; end; case 2: callshop "potion",0; end; } } - shop usable 89,505:10,506:15 - shop potion 89,505:10,506:15 like this
  12. You can make bind atcmd and use callshop
  13. Try this 35000,Unli Fly Wing,Unli Fly Wing,11...........{ atcommand "@jump"; },{},{}
  14. Post your accname.lua for this item here, and your item sprite name
  15. Try this 26114,_dragonshield,Dragon Shield,4,500,,300,,3,,1,0xFFFFFFFF,7,2,32,,0,1,1,{ bonus bAllStats,3; bonus2 bResEff,Eff_Stone,10000; bonus bShortWeaponDamageReturn,6; },{},{}
  16. Jayz

    Visual 2019

    Try this guide but this is 2017 but all you need is similar here or change version / name in the latest one
  17. This fix source already added on the description, next time read before click //On latest rAthena: open src/map/mob.c on int mob_delayspawn find md->spawn_timer = INVALID_TIMER; mob_spawn(md); change to md->spawn_timer = INVALID_TIMER; mob_spawn(md); ++ if( md->state.boss ) { ++ map_setmapflag(bl->m, MF_PVP, true); ++ } on int mob_spawn find if (md->spawn) { //Respawn data md->bl.m = md->spawn->m; md->bl.x = md->spawn->x; md->bl.y = md->spawn->y; change to if (md->spawn) { //Respawn data md->bl.m = md->spawn->m; md->bl.x = md->spawn->x; md->bl.y = md->spawn->y; ++ if(md->spawn->state.boss) map_setmapflag(md->bl.m, MF_PVP, true); on int mob_dead find // MvP tomb [GreenBox] if (battle_config.mvp_tomb_enabled && md->spawn->state.boss && map[md->bl.m].flag.notomb != 1) mvptomb_create(md, mvp_sd ? mvp_sd->status.name : NULL, time(NULL)); change to (Config your mvp_tomb_enabled on battle folder.) // MvP tomb [GreenBox] if (battle_config.mvp_tomb_enabled && md->spawn->state.boss && map[md->bl.m].flag.notomb != 1) mvptomb_create(md, mvp_sd ? mvp_sd->status.name : NULL, time(NULL)); ++ if(md->spawn->state.boss) { ++ map_setmapflag(md->bl.m, MF_PVP, false); ++ } recompile and is ready.
  18. Prontera side vendor only - script prontera_vending -1,{ OnInit: setcell "prontera", 148,212, 162,127, cell_novending,1; end; }
  19. Fixes Acid Demonstration for pre-renewal (#4775) = https://github.com/rathena/rathena/commit/d421225c4fa844f7226326ff33ff7ba0c2d67ee0
  20. Jayz

    VPS Services

    I found this link contain eamod files https://github.com/zephyrus-cr/eamod/tree/master/Servers
  21. Use cash shop usable item instead 12202,Str_Dish10_,Steamed Tongue,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; },{},{} 12203,Agi_Dish10_,Steamed Scorpion,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; },{},{} 12204,Int_Dish10_,Dragon Breath Cocktail,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; },{},{} 12205,Dex_Dish10_,Hwergelmir's Tonic,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; },{},{} 12206,Luk_Dish10_,Cooked Nine Tail's Tails,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; },{},{} 12207,Vit_Dish10_,Stew Of Immortality,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; },{},{}
  22. I think you want to make charm system use this link for references https://rathena.org/board/topic/97172-charms-items-effect-to-work-while-in-inventory/
×
×
  • Create New...