Jump to content

Archetype Saber

Members
  • Posts

    361
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Archetype Saber

  1. if (getmapusers(prontera)=30 { mes "I'm sorry, this arena is full. Please try again later."; close; } else warp prontera 0,0; something like that
  2. does anyone already using the JRO ? http://ragnarokonline.gungho.jp/ I want to download this but I don't know where is the Download Button Ooops I found it ! http://ragnarokonline.gungho.jp/beginner/download.html Sorry.
  3. GRF mo, baka IDNUM pa din ginagamit mo. kung nka 2013 Client ka. dapat iteminfo.lub yan eh.
  4. thank you for this! I'm also looking for a guide on how to setup this control panels in localhost. :3
  5. Hi, Good Day, Sorry if my request is kinda obvious, but I have no Idea on how to setup Control Panels. I've done many things,tuts on Google but none of them works. this is my Last Resort Guys please bear with me ? Can you PLEASE provide some links of Software I need to install and use including the cp that I can use ? (either cere or flux or what do you think is better). Thank You for Any Help that will come to this Thread. My Deepest Apology for having a ZERO knowledge about this matter.
  6. a simple explanation or guide please ? to make the client accepts the 256x256 - 32 48x48 - 32 32x32 - 32 16x16 - 32 Icon size
  7. but Im using a patcher and the only option on the patcher is the default RO Icon. I want to use a custom one too
  8. extract the sprite files inside the data folder and rdata folder and compress them to your grf.
  9. I don't know if it's already implemented but if not please can you ?
  10. how to set the 3rd job aura to level 150 rather than 175 and 160 ?
  11. Hi to all mappers especially to those professional mappers. do you have any suggestion on where I can get some good tile textures? Expecially the Bricks type and circular bricks ?
  12. I see so there is nothing to do with - shop MSHOP1 -1,512:-1 - shop MSHOP2 -1,512:-1 - shop MSHOP3 -1,512:-1 - shop MSHOP4 -1,512:-1 - shop MSHOP5 -1,512:-1 - shop MSHOP6 -1,512:-1 - shop MSHOP7 -1,512:-1 - shop MSHOP8 -1,512:-1 just need to replace .Shop to .Shop1 (for example) . thank you I'll try it.
  13. @Solid2005, it's still compatible with the latest rev ?
  14. How to duplicate this NPC Made by Euphy ? Thank You http://pastebin.com/bmVZxWyX //===== eAthena Script ======================================= //= Custom-Currency Multi-Shop //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.2 //===== Description: ========================================= //= Allows for better organization in a single shop call. //= Note that there are two configuration areas. //============================================================ // -------------------- Config 1 -------------------- // For each shop added, copy this MSHOPX dummy data. // Write your shop names in the select() function. - shop MSHOP1 -1,512:-1 - shop MSHOP2 -1,512:-1 - shop MSHOP3 -1,512:-1 - shop MSHOP4 -1,512:-1 - shop MSHOP5 -1,512:-1 - shop MSHOP6 -1,512:-1 - shop MSHOP7 -1,512:-1 - shop MSHOP8 -1,512:-1 prontera,163,174,4 script A Shop 984,{ set @s, select("Weapons:Headgears:Armors:Garments:Shoes:Shields:Cards:Misc"); // -------------------------------------------------- message strcharinfo(0),"This shop only accepts "+getitemname(.Currency[@s])+"."; dispbottom "You have "+countitem(.Currency[@s])+" "+getitemname(.Currency[@s])+"."; callshop "MSHOP"+@s,1; npcshopattach "MSHOP"+@s; end; OnBuyItem: set .@i,0; while (.@i < getarraysize(@bought_nameid)) { set .@j, 0; while (.@j < getarraysize(getd(".Shop"+@s))) { if(getd(".Shop"+@s+"["+.@j+"]") == @bought_nameid[.@i]) { set @itemcost, (getd(".Shop"+@s+"["+(.@j+1)+"]") * @bought_quantity[.@i]); set @totalcost, @totalcost + @itemcost; break; } set .@j, .@j+2; } set .@i, .@i+1; } if (@totalcost > countitem(.Currency[@s])) dispbottom "You don't have enough "+getitemname(.Currency[@s])+"."; else { set .@i,0; while (.@i < getarraysize(@bought_nameid)) { getitem @bought_nameid[.@i], @bought_quantity[.@i]; dispbottom "Purchased "+@bought_quantity[.@i]+"x "+getitemname(@bought_nameid[.@i])+"."; set .@i, .@i+1; } delitem .Currency[@s], @totalcost; } set @totalcost, 0; deletearray @bought_nameid[0], 128; deletearray @bought_quantity[0], 128; end; OnInit: // -------------------- Config 2 -------------------- // Currency: The ID of each shop currency, // in the same order as the shops. // Shop order follows that of the select() call, // and is formatted "ID1,Count1,ID2,Count2,..." setarray .Currency[1],513,513,513,513,513,513,513,513; setarray .Shop1[0],1202,5,1229,20; setarray .Shop2[0],5116,15; setarray .Shop3[0],2302,2,2348,30; setarray .Shop4[0],2502,2,2513,15,2523,15; setarray .Shop5[0],2441,15; setarray .Shop6[0],2199,32768; setarray .Shop7[0],4051,3,4285,6; setarray .Shop8[0],513,1,532,2,634,4; // -------------------------------------------------- set .@i,1; while (.@i <= getarraysize(.Currency)) { set .@j,0; while (.@j < getarraysize(getd(".Shop"+.@i))) { npcshopdelitem "MSHOP"+.@i,512; npcshopadditem "MSHOP"+.@i, getd(".Shop"+.@i+"["+.@j+"]"), getd(".Shop"+.@i+"["+(.@j+1)+"]"); set .@j, .@j+2; } set .@i, .@i+1; } end; } bump please ?
  15. Sorry if I post on the wrong section I don't where should I post this problem Everytime I log in these messages always appearing .. how to remove them ?
  16. an NPC that Display the current time of the sever with a format of HR/MIN/SEC time ticking every seconds. I think there is something to do with LOOP. err.
  17. http://sourceforge.net/projects/internalguard/ How to Install: https://www.youtube.com/watch?feature=player_embedded&v=8EI5JiXGGGk
×
×
  • Create New...