Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 01/30/21 in Posts

  1. 2 points
    Temtaime

    New life for RO

    Hello. I know that much time has passed, but for now i'm getting back on the client. Soon aesir.perfontain.ru will be shut down, so, please, stay tuned on aesir.perfontain.cc Thanks for your support ! @banhelba2019For sure, any type of effect you can implement.
  2. 1 point
    Kuya Jeo

    bindatcmd in certain map

    im kinda confuse on your question.. are you asking to get the map name? because as the title says "bindcmd in certain map" then maybe you asking.. "can only use the bindcmd in the certain map" I can give you the script but i dont know if this is what you are looking for... - script TestNPC FAKE_NPC,{ OnInit: bindatcmd "test",strnpcinfo(3)+"::OnTestCmd"; end; OnTestCmd: if(strcharinfo(3) == "new_1-1"){ /* put the content here */ /* this is only an example */ message strcharinfo(0), "You got a "+getitemname(512)+"."; getitem 512,100; end; } else{ message strcharinfo(0), "Sorry but this command can only used in a certain map."; end; } end; }
  3. 1 point
    Kuya Jeo

    Regarding Cash Foods

    Adding Delay on the item is the best way to used it one at a time example is something like this Before : { Id: 12041 AegisName: "Str_Dish01" Name: "Fried Grasshopper Legs" Type: "IT_HEALING" Buy: 2000 Weight: 60 BuyingStore: true Script: <" sc_start SC_FOOD_STR,1200000,1; percentheal 5,0; "> }, After : { Id: 12041 AegisName: "Str_Dish01" Name: "Fried Grasshopper Legs" Type: "IT_HEALING" Buy: 2000 Delay: 1800000 Weight: 60 BuyingStore: true Script: <" sc_start SC_FOOD_STR,1200000,1; percentheal 5,0; "> }, Item Delay : 30 minutes
  4. 1 point
    Kuya Jeo

    Unmanage VPS

    For me, I used OVH, it easy to manage if you know hos to setup your VPS and easy to contact them
  5. 1 point
    Kuya Jeo

    Player Status Error

    This is KS_PROTECTION, you must put the KS_PROTECTION on sc_config.conf SC_KSPROTECTED: { Flags: { NoClearanceReset: true Buff: true } Icon: "SI_ANGEL_PROTECT" }
  6. 1 point
    Kuya Jeo

    remove @go in PVP room (script command)

    change this part of the code into this one function go { if (.deadlock && !Hp) { message strcharinfo(0), "You may not use @go when you are dead."; } else if (.town && !getmapflag(strcharinfo(3), mf_town)) { message strcharinfo(0), "You may only use @go in towns."; } else if (getmapflag(strcharinfo(3), mf_pvp)) { message strcharinfo(0), "You cannot use @go in PvP Maps."; } else if (.delay && @go_delay > gettimetick(2)) { message strcharinfo(0), "You must wait "+ (@go_delay - gettimetick(2)) +" seconds before warping again."; } else if (BaseLevel < getarg(3)) { message strcharinfo(0), "You must be at least level "+ getarg(3) +" to warp to this map."; } else if (getgroupid() < getarg(4) || getmapflag(getarg(0), mf_nowarp)) { message strcharinfo(0), "You are not authorised to warp to this map."; } else if (.charge && Zeny < getarg(5)) { message strcharinfo(0), "You must have at least "+ getarg(5) +" zeny to warp to this map."; } else { if (.delay) { @go_delay = gettimetick(2) + .delay; } if (.charge) { Zeny -= getarg(5); } warp getarg(0), getarg(1), getarg(2); end; } message strcharinfo(0), "@go failed."; end; } reload the script and try it
  7. 1 point
    use mapflag prontera mapflag monster_noteleport
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.