Jump to content

jutaysxd

Members
  • Posts

    134
  • Joined

  • Last visited

4 Followers

Profile Information

  • Gender
    Male
  • Location
    Hell

Recent Profile Visitors

2582 profile views

jutaysxd's Achievements

Poring

Poring (1/15)

1

Reputation

  1. <--- How to fix this Client Date = 2010-07-30 SVN Version= 17348 // This file contains the items sold in the ingame cash shop // // The structure of the file is // type, item ID, price // // type: // 0: New // 1: Hot // 2: Limited // 3: Rental // 4: Gear // 5: Buff // 6: Heal // 7: Other // // price: // price of the defined item in cash points 0,30000,50 0,30001,50 0,30002,50 0,30003,50 0,30004,50 0,30087,50 0,30088,50 0,30089,50 0,30090,50 0,30091,50 0,30092,50 0,30077,30 0,30078,30 0,30079,30 0,30080,30 0,30081,30 0,30082,30 0,30083,30 0,30084,30
  2. SVN VERSION : 17348 Client Date 2010-07-30 Please Help zxc.bmp
  3. 2010-07-30 Client Crash When killing Mvp help Please ;(
  4. jutaysxd

    Help!

    how to make this script announce after completing the quest //===== eAthena Script ======================================= //= Super Awesome Quest Template //===== By: ================================================== //= CalciumKid //= & Okira //===== Current Version: ===================================== //= 2.0 //===== Compatible With: ===================================== //= eAthena 1.0 Final + //===== Description: ========================================= //= Quest Template //============================================================ prontera,147,174,5 script Test 100,{ //===== Config: ============================================== set .npcname$,"[^FF0000 Test ^000000]"; //Change to whatever you want the NPC name to be setarray .reqid[1],607,4357,4359; //Item IDs for the items, required for item checks setarray .reqn$[1],"Berry","Lordknight Card","Assasin Cross Card"; //These are names of the required items, for the dialogue setarray .reqa[1],100,1,1; //These are how many of each item is required set .prize,30005; //Change this to the Item ID of the item reward set .prizen$,"Fusion Valkyrie Helm"; //Change this to the name of your reward set .prizea,1; //Change this to the amount of the prize item set .zeny,20000000; //Amount of zeny for quest (set to 0 to disable) L_QUEST: mes .npcname$; mes "Hah! Hello there "+strcharinfo(0); next; mes .npcname$; mes "I don't get many visitors, so I assume you're after my legendary ^FF0000"+.prizen$+"^000000?"; menu "Of course",-,"No way",L_EXIT; next; mes .npcname$; mes "Great! I love business. I can make you a ^FF0000"+.prizen$+"^000000, but only if you bring me the materials required."; next; mes .npcname$; mes "Would you like me to make one for you?"; menu "Yes",-,"No",L_EXIT; next; mes .npcname$; mes "I'll need the following:"; for (set .@x,1; .@x < getarraysize(.reqid); set .@x,.@x + 1) { mes .reqa[.@x]+" ^FF0000"+.reqn$[.@x]+"^000000"; } if (.zeny > 0) { mes .zeny+" ^FF0000Zeny^000000"; } next; mes .npcname$; mes "Do you have those items?"; menu "Yes",-,"No",L_EXIT; next; mes .npcname$; for (set .@x,1; .@x < getarraysize(.reqid); set .@x,.@x + 1) { if(countitem(.reqid[.@x]) >= .reqa[.@x]) {mes "You've got enough ^00FF00"+.reqn$[.@x]+"^000000";} else {mes "You need more ^FF0000"+.reqn$[.@x]+"^000000";} } if (.zeny > 0) { if (Zeny < .zeny) {mes "You're missing ^FF0000Zeny^000000";} else {mes "You've got enough ^00FF00Zeny^000000";} } next; mes .npcname$; mes "Would you like to complete the quest?"; menu "Yes please!",-,"No Thanks",L_EXIT; next; for (set .@x,1; .@x < getarraysize(.reqid); set .@x,.@x + 1) { if(countitem(.reqid[.@x]) < .reqa[.@x]) goto L_EXIT2; } if (.zeny > 0) { if (Zeny < .zeny) goto L_EXIT2; } mes .npcname$; mes "Brilliant! Fantastic! Here you go."; for (set .@x,1; .@x < getarraysize(.reqid); set .@x,.@x + 1) { delitem .reqid[.@x],.reqa[.@x]; } if (.zeny > 0) { set Zeny, Zeny - .zeny; } goto L_FINAL2; close; L_EXIT: next; mes .npcname$; mes "Eh. I don't need you either. Bah!"; close; L_EXIT2: next; mes .npcname$; mes "I'm sorry, you don't have enough!"; close; L_FINAL2: next; mes .npcname$; mes "Brilliant! Fantastic! Here you go."; getitem .prize,1; close; } [solved]
  5. The Guild name Is not showing at all How to Fix this ?
  6. Anybody can decompile this for me ? lua files.rar [FIX]
  7. jutaysxd

    Devotion skill

    @Fcuk this may help http://trac.rathena.org/changeset/15185/rathena
  8. jutaysxd

    Devotion skill

    is this working ? Sorry for my bad english
×
×
  • Create New...