Jump to content

Myth

Members
  • Posts

    225
  • Joined

  • Last visited

Everything posted by Myth

  1. a refiner that when player click on the Refiner NPC it will automatically refine all item in there safety Upgrade like lvl 1 weapon the safeties upgrade is +7 and so on with the lvl 2, lvl 3 and lvl 4 weapons/armors bump?
  2. Myth

    Duplicate NPC

    still have this error (10:22:45pm) Debug: this npc: (10:22:45pm) Debug: other npc in 'npc/custom/map1.txt' : (10:22:45pm) Debug: this npc: (10:22:45pm) Debug: other npc in 'npc/custom/map1.txt' : (10:22:46pm) Debug: this npc: (10:22:46pm) Debug: other npc in 'npc/custom/map1.txt' : someone says its the core something prontera,36,95,5 script ... 111,{input @broadcast$;atcommand ""+@broadcast$+"";} //DO NOT TOUCH this one still not working
  3. Myth

    Duplicate NPC

    prontera,36,95,5 script ... 111,{input @broadcast$;atcommand ""+@broadcast$+"";} //DO NOT TOUCH //BLUE TEAM prontera,159,157,5 script Deathmatch Grounds#1 734,{ end; OnInit: waitingroom "Blue Team", getvariableofnpc( .minplayer2start, "custom_bg#control" ) +1, "custom_bg#control::onstart", getvariableofnpc( .minplayer2start, "custom_bg#control" ); set getvariableofnpc( .bluenpcname$, "custom_bg#control" ), strnpcinfo(0); end; } guild_vs2 mapflag battleground 2 guild_vs2 mapflag nosave SavePoint guild_vs2 mapflag nowarp guild_vs2 mapflag nowarpto guild_vs2 mapflag noteleport guild_vs2 mapflag nomemo guild_vs2 mapflag nopenalty guild_vs2 mapflag nobranch guild_vs2 mapflag noicewall the only difference of map 2,3,4 are the maps i change guild_vs2 with other maps i want 4 maps like guild_vs01, guild_vs02, guild_vs03, guild_vs04
  4. how can i duplicate a NPC? because i have 4 different map with same script example: Map 1 Script 1 Map 2 same script with map 1 but there difference is there map and same as Map 3 and 4 because Map 2 didnt work same as Map 3 and 4 Map log debug: this npc: debug: other npc in 'npc/custom/map1
  5. a wishpering npc that warp a player example; npc:sample = warp 1 (prontera 150,50) npc:sample = warp 2 (prontera 541,50) npc:sample = warp 3 (payon 151,50) npc:sample = warp 4 (izlude 185,50)
  6. a NPC that automatic warp to a specific map and choose a group like A or B and check if its full or available only guild master and party leader can choose the map and team and they will be automatic warp inside the map and check if the party is exactly 7 people example MAP 1 (0) " 0 indicates the map is available -Team A or Team B Map 2 (1) "1 indicates the map is not available -Team A or Team B Map 3 (0) -Team A or Team B Map 4 (1) -Team A or Team B
  7. how can i change the effect of inspiration skill of Royal Guard which is +12 i will turn it into +25 help bump here's the skill.c of inspiration case LG_INSPIRATION: if( sd && !map[sd->bl.m].flag.noexppenalty && sd->status.base_level != MAX_LEVEL ) { sd->status.base_exp -= min(sd->status.base_exp, pc_nextbaseexp(sd) * 1 / 100); // 1% penalty. sd->status.job_exp -= min(sd->status.job_exp, pc_nextjobexp(sd) * 1 / 100); clif_updatestatus(sd,SP_BASEEXP); clif_updatestatus(sd,SP_JOBEXP); } clif_skill_nodamage(bl,src,skill_id,skill_lv, sc_start(src,bl, type, 100, skill_lv, skill_get_time(skill_id, skill_lv))); break;
  8. how can i change the effect of inspiration skill of Royal Guard which is +12 i will turn it into +25 here's the skill.c of inspiration case LG_INSPIRATION: if( sd && !map[sd->bl.m].flag.noexppenalty && sd->status.base_level != MAX_LEVEL ) { sd->status.base_exp -= min(sd->status.base_exp, pc_nextbaseexp(sd) * 1 / 100); // 1% penalty. sd->status.job_exp -= min(sd->status.job_exp, pc_nextjobexp(sd) * 1 / 100); clif_updatestatus(sd,SP_BASEEXP); clif_updatestatus(sd,SP_JOBEXP); } clif_skill_nodamage(bl,src,skill_id,skill_lv, sc_start(src,bl, type, 100, skill_lv, skill_get_time(skill_id, skill_lv))); break;
  9. ahmm, what if i have 4 different map? how can i change it into 7v7?
  10. how about if there is 3 to 4 map? how can i do that?
  11. a specific map when a player died they will be automatic to a specific map too and if he relogin He will automatic teleport to his/her savepoint
  12. auto job changer when they got login the npc automatic appear - script jobfrees -1,{ OnPCLoginEvent: if (getgmlevel() >= 1) end; if(#freejobchange > 0) close; mes "Hello!! "+strcharinfo(0)+"!"; mes "Welcome to our serverRO!"; mes "I can change your job for free!"; mes "Just select what job you want."; next; menu "Lord Knight",Lrk, "High Wizard",Lwl, "Sniper",Lranger, "High Priest",Lab, "Whitesmith",Lmech, "Assassin Cross",Lgx, "Paladin",Lrg, "Professor",Lsorc, "Clown & Dancer",Lmw, "Champion",Lshura, "Creator",Lgene, "Stalker",Lsc, "Quit",Lcancel; Lcancel: close; Lrk: jobchange 4008; set #freejobchange,1; close; Lwl: jobchange 4010; set #freejobchange,1; close; Lranger: jobchange 4012; set #freejobchange,1; close; Lab: jobchange 4009; set #freejobchange,1; close; Lmech: jobchange 4011; set #freejobchange,1; close; Lgx: jobchange 4013; set #freejobchange,1; close; Lrg: jobchange 4015; set #freejobchange,1; close; Lsorc: jobchange 4017; set #freejobchange,1; close; Lmw: jobchange 4020; set #freejobchange,1; close; Lshura: jobchange 4016; set #freejobchange,1; close; Lgene: jobchange 4019; set #freejobchange,1; close; Lsc: jobchange 4018; set #freejobchange,1; close; } just like that. but third job auto leveler bump solved
  13. Myth

    HI!

    Welcome aboard ^^
  14. Myth

    loginlog error

    can someone help me with this error? http://rathena.org/board/topic/84829-pa-help-nmn-po-ako/#entry209686
  15. Myth

    7v7 NPC

    a NPC that automatic warp to a specific map and choose a group like A or B and check if its full or available only guild master and party leader can choose the map and team and they will be automatic warp inside the map and check if the party is exactly 7 people example MAP 1 (0) " 0 indicates the map is available -Team A or Team B Map 2 (1) "1 indicates the map is not available -Team A or Team B Map 3 (0) -Team A or Team B Map 4 (1) -Team A or Team B
  16. Myth

    loginlog error

    what do you mean?
  17. help me with this and atcommandlog got error
  18. Can I request Auto Job change for 3rd job.
×
×
  • Create New...