Jump to content

GM Homies

Members
  • Posts

    36
  • Joined

  • Last visited

Posts posted by GM Homies

  1. are there any schools that teach you on how to manage Linux or something? or something you can pay for a tutorial on how to make your own vps company. Im planning to make one. But I need to learn first how to manage Linux etc. Planning to start on a business about VPS Hosting

  2. Why don't you look for a dedicated server and install everything by your own.

    Thats what Im going to do next. Im just starting in this business. no need to push yourself to a dedicated server if you dont know all things. its like you're building a house without blueprints. -.- hosting company is a fresh start. dont you think?

     

    This sucks. My host provider sucks. What are the best Hosting company nowadays? The one with huge DDOS protection. The type of owner that wont ddos  your server just to upgrade to a huge plan they have. im getting pissed off. 

    any hint about the suck host you are talking about?

    I dont think that would be good to say the company name. its for myself. im just asking now what Hosting company is best today? 

    hello you can try out our hosting https://wanhosting.net

    Is that reliable? 24/7 support? no down? seriously? NO DOWN?

  3. This sucks. My host provider sucks. What are the best Hosting company nowadays? The one with huge DDOS protection. The type of owner that wont ddos  your server just to upgrade to a huge plan they have. im getting pissed off. 

  4. Fixed it myself. Here's the code. used some logic. thanks to all that used the time and effort

     

    4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ if(BaseClass==Job_Swordsman||BaseClass==Job_Merchant||BaseClass==Job_Mage||BaseClass==Job_Archer||Baseclass==Job_Acolyte||BaseClass==Job_Gunslinger||BaseClass==Job_Ninja) { bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"WS_OVERTHRUSTMAX",3,100; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } if(BaseJob == Job_Assassin) { bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",5,100; } },{ callfunc "Restrict"; },{}
  5. if( BaseJob != Job_Assassin ) { // maximum over thrust skill }
    

    I didnt quite understand it sir emistry. can you make the full script?

    if( BaseJob != Job_Assassin ) { // maximum over thrust skill }
    

    The effect im trying to explain is.

    Mastersmith Card:

    Level 3 Maximum Over Thrust

    Level 10 Mammonite

    If Your Job is Assassin Cross.

    Level 10 Mammonite only. NO MAXIMUM OVER THRUST.

    The assassin reads the main script MOT. 

  6. Because it is on the main script. 

     

    Do you want the card effect is 

     

    If the assassin use the whitesmith card, Level 10 mammonite Only

    but not the Level 10 + Maximum over thrust Level

    Yes. I hope that the sinx wont read the main script MOT. I wish that Level 10 Mammo only How can I do that?

  7. make it 

     

     bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(BaseClass==Job_Thief ) bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{}

     

    to

     

     bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(Class=="CLASS ID OF ASSASSIN CROSS") {bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{}

     

    you can check the class id on @job then find the sinx.

    But the assassin still inherit the Maximum over thrust.

  8. For Example I want Whitesmith Card to be this effect:

     

    Mammonite Level 10 + Maximum over thrust Level 3 If Job is Assassin

    Level 10 mammonite Only.

     

    What happen is if I set "if(baseclass = thief) " something it also reads the level 10 MOT script.

     

     

    for instance

     

    { bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(BaseClass==Job_Thief ) bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{}

     

    What happen is. even tho its working. the sinx still reads the maximum over thrust skill

  9. I am having a weird problem here for example

    Agi based skills affects delay on devotion for example

     

     

    Paladin Devoted the Stalker if an enemy SNIPER uses Sharpshooting to the paladin the SNIPER can spam the skill but when the Sniper spam the Sharpshooting skill to the devoted stalker it gives the Sniper a slow motion skill. atleast 3 seconds delay. it gives delay to the sniper when he try to use skill to the devoted player.

     

    Affected skills:

    Sharpshooting

    BowlingBash

    Cart Termination

    Double Strafe

     

    Etc

  10. If you want to put it on items, there's an item script for that

    bonus2 bSkillAtk,sk,n;            Increases damage of skill sk by n%

    But if you want it permanently, you can increase their values in src/map/battle.c, for example..

     

    Find

    case WS_CARTTERMINATION:
    			i = 10 * (16 - skill_lv);
    			if (i < 1) i = 1;
    			//Preserve damage ratio when max cart weight is changed.
    			if(sd && sd->cart_weight)
    				skillratio += sd->cart_weight/i * 80000/battle_config.max_cart_weight - 100;
    			else if (!sd)
    				skillratio += 80000 / i - 100;
    

    Increase 'skillratio' value to how much you would want to increase it.

    Well thankyou and mostly appreciated your help! :) Btw. where is that "skillratio" Value? is it the number 80000?? in skillratio += 80000 / i - 100;      

     

    and most of the skillratio in all skills are the exactly the same?

×
×
  • Create New...