Jump to content

Flaid

Members
  • Posts

    398
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Flaid

  1. Open: /src/common/mmo.h Find this: #define MAX_GUILD 16+10*6 16 guild members without skill max skill level 10 +6 for each skill level Edit it to your needs. This is supposed to be on source edits tho. Edit: Don't forget to recompile when done.
  2. Hast du irgendwelche Änderung vorgenommen bevor das ganze passiert ist? Welche SVN benutzt du?
  3. This is not a custom monster, it will/is on the new guild dungeons,
  4. File Name: Pyuriel File Submitter: Flaid File Submitted: 23 Mar 2012 File Updated: 01 Apr 2012 File Category: Mobs Well, I just wanted to share this hawt guy with you all, just recolored him and think I did pretty well there, here you all go. Enjoy. Click here to download this file
  5. I did not test this but here's the script { if(Hp < MaxHP / 100 * 3) ){ bonus3 bAutoSpell,"LK_BERSERK",1,100; }},{},{} if that isn't working try this { if(Hp < MaxHP / 100 * 3) ){ bonus3 bAutoSpellWhenHit,"LK_BERSERK",1,100; }},{},{}
  6. I guess this should work just fine, try it: { if (getRefine() =< 1) { skill "WZ_METEOR",1 }; if (getRefine() = 2) { skill "WZ_METEOR",2 }; if (getRefine() = 3) { skill "WZ_METEOR",3 }; if (getRefine() = 4) { skill "WZ_METEOR",4 }; if (getRefine() = 5) { skill "WZ_METEOR",5 }; if (getRefine() = 6) { skill "WZ_METEOR",6 }; if (getRefine() = 7) { skill "WZ_METEOR",7 }; if (getRefine() = 8) { skill "WZ_METEOR",8 }; if (getRefine() = 9) { skill "WZ_METEOR",9 }; if (getRefine() = 10) { skill "WZ_METEOR",10 }},{},{}
  7. Hindi bababa sa ako ay sinusubukan upang matulungan, dahil ito ay hindi mukhang dito ang sinuman ay ginagawa na. ~.~
  8. Kailangan ko ng ilang higit pang impormasyon pa rin. Aling mga antas ang dapat mga manlalaro upang maging isang sanggol? Aling mga trabaho na dapat sila bago mawalan ng isang sanggol?
  9. No, all you need is that icon and probably a collection picture, which is not really necessary but always looks good.
  10. To add more monsters edit this line: set .MobID,1002,mobid2,mobid3; set .Amount,100,amount2,amount3;
  11. I did not test this but this should work. prontera.gat,150,150,1 script MvP Summoner 666,{ mes "[MvP Summoner]"; mes "What do you want?"; next; mes "[MvP Summoner]"; mes "Have you come here to summon a^FF3300 MvP^000000?"; next; menu "Yeah, Sure.",-,"No",M_EXIT; mes "[MvP Summoner]"; mes "This will cost you 1.000.000.000 zeny. Are you sure?"; next; menu "Sure.",M_SUMMON,"Nah.",-; M_SUMMON: if(TimeSpawned > gettimetick(2)) { mes "[MvP Summoner]"; mes "I am sorry, but I am not a robot."; mes "Please wait 30 minutes after your last MvP spawn."; close; } if (Zeny < 1000000000) goto L_NOZENY; set Zeny, Zeny - 1000000000; monster "this",-1,-1,"--ja--",-3,1,""; set TimeSpawned, gettimetick(2) + 1800; dispbottom "MvP Summoner: Please give me at least a day to recover."; close; L_NOZENY: mes "[MvP Summoner]"; mes "You do not have enough zeny to spawn a MvP"; mes "Get more and come back."; close; M_EXIT: mes "[MvP Summoner]"; mes "Then leave me alone... I am waiting for someone who wants my services."; close; }
  12. I added it for you. void pc_damage(struct map_session_data *sd,struct block_list *src,unsigned int hp, unsigned int sp) { unsigned int tick = gettick(); int warpgodelaycd = 5000; //This is the delay in milliseconds you can set what ever delay you want sd->warpgodelay_tick = tick+warpgodelaycd; //This is the timer if (sp) clif_updatestatus(sd,SP_SP); if (hp) clif_updatestatus(sd,SP_HP); else return; if( !src || src == &sd->bl ) return; if( pc_issit(sd) ) { pc_setstand(sd); skill_sit(sd,0); } if( sd->progressbar.npc_id ) clif_progressbar_abort(sd); if( sd->status.pet_id > 0 && sd->pd && battle_config.pet_damage_support ) pet_target_check(sd,src,1); sd->canlog_tick = gettick(); }
  13. Also laufen RO Server und deine Website bzw. dein Control Panel auf dem selben vServer/Dedicated? Falls du mehr als einen verwendest könnte ein nicht freigegebener Port das Problem sein. Hatte selbst auch schon das Problem, als ich den Port dann freigegeben hatte lief alles ohne Probleme. Ansonsten musst du dir wie Realusion schon sagte die config/servers.php Datei gründlich anschauen, vieleicht ein Tippfehler im Database Namen? Kontrolier das ganze am besten mal gründlich.
  14. That is an icon, it will be the small image in your inventory.
  15. Since you can't see much on the icon I made it a bit different, here you go. I hope you like it.
  16. Flaid

    NPC!

    If you add a new file into the NPC folder you will have to restart the server to get them working. @reloadscript just works if you put your script in an already existing file.
  17. Your 1678 doesn't count so here we go. 1678
  18. Lamang sanggol? O nais mo ang isang normal na isa na kasama ng sanggol?
  19. File Name: Thanatos Recolors File Submitter: EvilDevil File Submitted: 22 Mar 2012 File Category: Mobs Just was playin' around with some Thanatos colors and decided to share them with everyone here, I hope you enjoy. Click here to download this file
  20. You could also make a function for that, I personally prefer functions for this because it looks cleaner. Here's an example. Item script: { callfunc "yourfunctionname"; },{},{} And here is an example for your function: function script yourfunctionname{ bonus bAllStats,10; //This is the item bonus without any other part equiped if(isequipped(itemid1) || isequipped(itemid2)) { bonus bAllStats,10; //This is the item bonus with one of the above parts equiped. To change it to both replace the || with &&. } I don't know if you wanted to know this too, so I just post it for you as well, Max HP +100%: function script yourfunctionname{ bonus bAllStats,10; if(isequipped(itemid1) && isequipped(itemid2)) { bonus bMaxHPrate,100; }
×
×
  • Create New...