Jump to content

Jaburak

Members
  • Content Count

    229
  • Joined

  • Last visited

  • Days Won

    11

Posts posted by Jaburak


  1. Like this?

    prontera,200,180,3	script	test	123,{if(countitem(7227) < 10 || countitem(7179) < 10) goto Lne;mes "Okay, here you go!";delitem 7227,10;delitem 7179,10;getitem 5135,1;close;Lne:mes "Do you want to make this item?";mes "You have to bring me these ingredients!";mes "10 TCG";mes "10 PODS";close;}

  2. -	script	healtest	-1,{	.@price = 0;	// Zeny required for heal	.@Buffs = 1;	// Also buff players? (1: yes / 0: no)	.@Delay = 1;	// Heal delay, in seconds	if( getbrokenid(1) ) repairall;	getinventorylist;	while( .@i < @inventorylist_count ){		if ( !@inventorylist_identify[.@i] ){		delitem2 @inventorylist_id[.@i],1,0,0,0,0,0,0,0;		getitem @inventorylist_id[.@i],1;		}		.@i++;	}	if (@HD > gettimetick(2)) end;	if (.@price) {		message strcharinfo(0),"Healing costs "+.@price+" Zeny.";		if (Zeny < .@price) end;		if(select("^0055FFHeal^000000:^777777Cancel^000000") == 2) close;		Zeny -= .@price;	}	specialeffect2 EF_HEAL2; percentheal 100,100;	if (.@Buffs) {		specialeffect2 EF_INCAGILITY; sc_start SC_INC_AGI,360000,10;		specialeffect2 EF_BLESSING; sc_start SC_BLESSING,360000,10;	}	if (.@Delay) @HD = gettimetick(2)+.@Delay;	close;OnInit:	waitingroom "Healer",0;}

  3. -	shop	donateshop	111,501:50prontera,200,180,3	script	Donate Shop	112,{	set @i,0;	mes "[Donate Shop]";	mes "Each item will cost you some ^008800Voting Proof Tickets^000000";	mes "Select only one.";	callshop "donateshop",1;	npcshopattach "donateshop";	end;OnBuyItem:	if(.BuildQuest) {		for(set .e,0; !compare(getarg(.e+1),"Zeny"); set .e,.e+2) {}		npcshopadditem "donateshop",getarg(.e+2),getarg(.e)*compare(getarg(.e+1),"SZeny");		setarray .Shop[.i],getarg(.e+2);		set .i,.i+1;		goto Quest_Setup;	}	if(.Shop[@i]!=@bought_nameid) for(set @i,1; 1; set @i,@i+1) if(.Shop[@i]==@bought_nameid) { set .i,@i; callsub Quest_Setup; }	for(set @i,1; !@e; set @i,@i+1) if(.Shop[@i]==@bought_nameid) { set @e,1; set .i,@i; callsub Quest_Setup; }	mes "[Donate Shop]";	mes "I require the following:";	for(set @i,0; !compare(getarg(@i+1),"Zeny"); set @i,@i+2) mes "^880000" + ((countitem(getarg(@i))>=getarg(@i+1))? "^008800":"") + "" + getarg(@i+1) + " " + getitemname(getarg(@i)) + " [" + countitem(getarg(@i)) + "/" + getarg(@i+1) + "]";	if(getarg(@i)) mes "^880000" + ((Zeny>=getarg(@i))? "^008800":"") + "" + getarg(@i) + " Zeny";	mes "^000000In exchange, I will give you:^000088";	for(set @i,@i+2; getarg(@i+1,0); set @i,@i+2) mes getarg(@i+1) + " " + getitemname(getarg(@i));	switch(select("Exchange:" + (((((getiteminfo(@bought_nameid,5) & 1) || (getiteminfo(@bought_nameid,5) & 256) || (getiteminfo(@bought_nameid,5) & 512)) && @equip==0))? "Preview Item":"") + ":No thanks")) {		case 1:			for(set @i,0; !compare(getarg(@i+1),"Zeny"); set @i,@i+2) if(countitem(getarg(@i)) < getarg(@i+1)) {				next;				mes "You have " + countitem(getarg(@i)) + " " + getitemname(getarg(@i)) + ", while I require " + getarg(@i+1) + ".";				mes "Please obtain ^880000" + (getarg(@i+1)-countitem(getarg(@i))) + " more " + getitemname(getarg(@i)) + "^000000.";				close;			}			if(Zeny < getarg(@i)) {				next;				mes "You do not have enough Zeny.";				mes "Please obtain ^880000" + (getarg(@i)-Zeny) + " more Zeny^000000.";				close;			}			for(set @i,0; !compare(getarg(@i+1),"Zeny"); set @i,@i+2) delitem getarg(@i),getarg(@i+1);			set Zeny,Zeny-getarg(@i);			for(set @i,@i+2; getarg(@i+1,0); set @i,@i+2) getitem getarg(@i),getarg(@i+1);			if (compare(getarg(@i,0),"announce")) announce strcharinfo(0) + " has just obtained " + getitemname(@bought_nameid) + "!",bc_all;			close;		case 2:			set @bottomview, getlook(3);			set @topview, getlook(4);			set @midview, getlook(5);			addtimer 1000, strnpcinfo(3)+"::On_Leave";			set @equip,getiteminfo(@bought_nameid, 5);			set @view, getiteminfo(@bought_nameid, 11);			if(@equip != -1 && @view > 0) {				if(@equip & 1) atcommand "@changelook 3 " + @view;				if(@equip & 256) atcommand "@changelook 1 " + @view;				if(@equip & 512) atcommand "@changelook 2 " + @view;			}			next;			goto OnBuyItem;		case 3:			close;	}On_Leave:	atcommand "@changelook 1 " + @topview;	atcommand "@changelook 2 " + @midview;	atcommand "@changelook 3 " + @bottomview;	set @equip,0;	set @view,0;	set @topview,0;	set @midview,0;	set @bottomview,0;	end;OnInit:	npcshopitem "donateshop",0,0;	set .BuildQuest,1;	set .i,1;Quest_Setup:	switch(.i) {		default: set .BuildQuest,0; set .e,0; set .i,0; end;		case 1: callsub OnBuyItem,7179,10,10,"SZeny",5135,1;	}}

  4. I'm new to hercules but try this one.

    prontera,150,180,4	script	LMS Event	100,{	warp "guild_vs3",0,0;	end;OnInit:	hideonnpc ""+strnpcinfo(0);	hideonnpc "Reward#LMS";	getmapxy(.m$,.x,.y,1,strnpcinfo(0));	mapwarp "guild_vs3",""+.m$,.x,.y;	end;OnClock0100:	mapwarp "guild_vs3",""+.m$,.x,.y;	announce "[Announce] : LMS Event is active. Warp Prontera 150 180!" ,bc_all;	hideoffnpc ""+strnpcinfo(0);	initnpctimer;	end;OnTimer10000:	hideonnpc ""+strnpcinfo(0);	mapannounce "guild_vs3","[Announce] : Event Start!!!",0;	pvpon "guild_vs3";	if(!getmapflag("guild_vs3",mf_pvp_noparty))	{		set .mf_pvp_noparty,1;		setmapflag "guild_vs3",mf_pvp_noparty;	}	if(!getmapflag("guild_vs3",mf_pvp_noguild))	{		set .mf_pvp_noguild,1;		setmapflag "guild_vs3",mf_pvp_noguild;	}	if(!getmapflag("guild_vs3",mf_gvg))	{		set .mf_pvp_noguild,1;		setmapflag "guild_vs3",mf_gvg;	}	end;OnTimer30000://Clean all player.	if(getmapusers("guild_vs3")==1)	{		hideoffnpc "Reward#LMSE";		mapwarp "guild_vs3","guild_vs3",50,50;	}else		mapwarp "guild_vs3",""+.m$,.x,.y;	pvpoff "guild_vs3";	if(.mf_pvp_noparty)	{		set .mf_pvp_noparty,0;		removemapflag "guild_vs3",mf_pvp_noparty;	}	if(.mf_pvp_noguild)	{		set .mf_pvp_noguild,0;		removemapflag "guild_vs3",mf_pvp_noguild;	}	if(.mf_gvg)	{		set .mf_gvg,0;		removemapflag "guild_vs3",mf_gvg;	}	stopnpctimer;	end;}guild_vs3,50,50,4	script	Reward#LMS	100,{	announce "[Announce] : LMS Event winner is "+strcharinfo(0)+" !!!", bc_all;	getitem 675,1;	hideonnpc ""+strnpcinfo(0);	warp "save",0,0;	end;}

  5. s1 Lykos Designs

    -----------

     

    95897371_110278217341194_710565084147377

     

    -----------

     

    s1 Lykos, a website design and development team specializing in affordable customized web site/blog design, interactive web development, database-to-web integration, web-based application etc.

    We also offers ragnarok sprites, patcher, and banner design, etc.

     

    -----------

     

    Contact Information

     

    Services

    • Splash | Web Design
    • Patcher Skin
    • Loading | Login Screen
    • Banner | Logo
    • Coding (HTML, HTML 5, JQuery, CSS, SQL, PHP)
    • Flux CP Addons

     

    Custom Sprites

    • Custom Job
    • Headgears | Animated HG
    • Custom Weapons
    • NPC Sprite
    • Monster Sprite
    • Recolors

    -----------

     

    Want to see more sample designs? Check every pages of this thread!

     

    Splash/Landing Page Showcase

     

     

    MyRO Splash/Landing Page

    FpqS4oE.png

     

    AdikRO Splash/Landing Page

    34VLqZK.jpg

     

    PrimeRO Splash/Landing Page

    qI2f2ke.png

     

    PlayRO Splash/Landing Page

    XpM8Vul.png

     

    BalikRO Splash/Landing Page

    Plp3wV5.png

     

    RPS Splash/Landing Page

    8qDA98d.png

     

    OthersideRO Splash/Landing Page

    OvDr3cB.png

     

    AvidRO Splash/Landing Page

    rnO8vLV.png

     

    ZealRO Splash/Landing Page

    XlJUPVm.png

     

     

    XeroxRO Splash/Landing Page

    gx5OHua.png

     

     

     

    Flux Design Mocks

     

     

     

    MyRO

    07uMe24.png

     

    Ragnarok Private Servers

    nmSv7Dh.png

     

    CandyRO

    plhBViJ.png

     

    MetalRO

    USXd8rk.png

     

    BalikRO

    7TeRqBT.png

     

    PlayRagnarok

    nakwG7v.png

     

    Sarah Server

    w5bWyD1.png

     

    CydoniaRO

    uGTgqT8.png

     

    TitansRO

    4OHWHBA.png

     

    Premade Website v5

    Rj02Csz.png

     

    Premade Website v4

    w4mXeYJ.png

     

    TitanRO

    bxnyEQS.png

     

    LegacyGamersRO

    YaLjIpH.png

     

    IntenseRO

    sNBjpOZ.jpg

     

    Premade Website v1

    qbRGZ3o.png

     

    Premade Website v2

    uDDJuPI.png

     

    AvidRO

    9X7mhUs.png

     

    XeroxRO

    ar2GFX9.png

     

    Premade Website v3

    GABFtCi.png

     

    InvokeRO

    7JtqUYG.png

     

     

     

    Custom RO Sprites Showcase

     

     

     

    KPFAvtK.jpg

     

    xGL6JUU.png

     

    FBP3cey.png

     

    Myfhjb3.jpg

     

    Caps.png

    Customized Caps.

    Angrybirds.png

    Angry Birds Headgear. (Unnfinished)

    Avset.png

    Angelic Valkyrie Set.

    DragonSet.png

    Dragon Set.

     

    yes_zpsb769fbd6.jpg

    DotA Weapons.(Yasha, Sange & Yasha, Desolator, Sange)

     

    Patcher Designs

     

     

     

    RPS

    D0HtJnf.png

     

    MyRO

    XWzZL1V.png

     

    AimHighRO

    d91bJRG.png

     

    MetalRO

    svwUjp3.png

     

    PlayRagnarok Patcher

    1R9ogDj.png

     

    Sarah Server Patcher

    oUu8fIG.png

     

    CaseRO Patcher

    3UsMSIN.png

     

    pRO Style Patcher

    e5ESzd5.jpg

     

    InvokeRO

    4wKoKCQ.png

     

    Premade Patcher v1

    WpTYYiW.png

     

    Premade Patcher v2

    R1M2QQx.png

     

    XeroxRO Patcher

    Ic5aikS.png

     

    Premade Patcher v3

    sH3X8n3.png

     

     

     

    Animated Banners(GIFs)

     

     

     

    K6wwhVi.gif?1

     

    s8kDzom.gif

     

    JkwEd0B.gif

     

    xooUvcD.gif

     

    2SSAGkd.gif

     

    pI2da7M.gif

     

    OWYvH0K.gif

     

    RqoAqxG.gif

     

    F0L6ePP.gif

     

    Rz43I2s.gif

     

    gPVjguU.gif

     

    Kopxjbt.gif

     

    srN3zJV.gif

     

    8jdTQxc.gif

     

    S34zDy3.gif

     

    mE5CQ6A.gif

     

    hYBwYCe.gif

     

     

     

    Want to see more sample designs? Check every pages of this thread!


  6.  

     

    is it possible if you can make something like my sig userbar "Proud to be Pinoy"(I mean Hercules but same with my font style) in the your 2nd userbar?

    Thanks.. ;)

     

    :meow:

     

    xIxbuk2.png

    hehehe..I mean the word Hercules instead of proud to be..hehehe.

    anyway thanks... :D

     

    :meow:

     

    Proud to be Hercules?


  7. Thanks guys! :P

     

    Omg that's sooooo cool :> You need to make me a custom one! <3

     

    Sure, just give me a details of yours. :P

     

    You should make a special userbar for Ind: "Proud to be Hercules". Why not?

     

    I'll make one if you want. xD

     

    Anyways; can someone give a special slogan for Hercules?


  8. ASPD effects or the skill cast? Anyways, you can edit the skill behavior here.

     

    Hercules/blob/master/db/re/skill_cast_db.txt

    //-- WL_TETRAVORTEX2217,5000:6000:7000:8000:9000,2000,0,20000,0,15000,2000

    Hercules/blob/master/db/re/skill_db.txt

    2217,11,6,1,0,0,0,5,1,yes,0,0,0,magic,0,	WL_TETRAVORTEX,Tetra Vortex2218,11,6,1,3,0,0,5,1,no,0,0,0,magic,0,		WL_TETRAVORTEX_FIRE,Tetra Vortex Fire2219,11,6,1,1,0,0,5,1,no,0,0,0,magic,0,		WL_TETRAVORTEX_WATER,Tetra Vortex Water2220,11,6,1,4,0,0,5,1,no,0,0,0,magic,0,		WL_TETRAVORTEX_WIND,Tetra Vortex Wind2221,11,6,1,2,0,0,5,1,no,0,0,0,magic,0,		WL_TETRAVORTEX_GROUND,Tetra Vortex Earth

  9.  

    is it possible if you can make something like my sig userbar "Proud to be Pinoy" in the your 2nd userbar?

    Thanks.. ;)

     

    :meow:

     

    Can I use it too? haha! Anyway thanks for sharing Anakid :meow:

     

    Yea sure! :P

×
×
  • Create New...

Important Information

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