Jump to content

Nero

Members
  • Posts

    194
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Nero

  1. ayothaya,151,171,3 script Drops Trader 403,{ mes .name$; mes "You currently have "+countitem(.Imagine_item)+" Mithril coin/s."; mes "Would you like to look at the shop?"; next; if(select("Yes:No") == 2) { close; } close2; callshop "Imagine_SHOP",1; npcshopattach "Imagine_SHOP"; dispbottom "You currently have "+countitem(.Imagine_item)+" Mithril coin/s."; end; OnBuyItem: for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { for(set @j,0; @j < getarraysize(.Imagine_ITEMS); set @j,@j+2) { if(.iMAGINE_ITEMS[@j] == @bought_nameid[@i]) { set @itemcost,(.IMAGINE_ITEMS[(@j+1)]*@bought_quantity[@i]); set @totalcost,(@totalcost+@itemcost); break; } } } if(@totalcost > countitem(.Imagine_item)) { dispbottom "You don't have enough coin."; } else { for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; } delitem .Imagine_item,@totalcost; dispbottom "Thank you for shopping."; dispbottom "You now have "+countitem(.Imagine_item)+" Mithril coin left."; } set @totalcost,0; deletearray @bought_nameid[0],128; deletearray @bought_quantity[0],128; end; OnInit: npcshopdelitem "Imagine_SHOP",909; // Leave this alone set .name$,"[DropsTrader]"; set .Imagine_item,674; // Input TCG ID setarray .Imagine_ITEMS[0],7086,2,7090,2,7091,2,7077,2,7076,2; // Input as many items as you want (item::price) for(set .@i,0; .@i < getarraysize(.IMAGINE_ITEMS); set .@i,.@i+2) { npcshopadditem "Imagine_SHOP",.IMAGINE_ITEMS[.@i],.Imagine_ITEMS[(.@i+1)]; } } - shop Imagine_SHOP 139,909:1 in my past server, as iv'e used this script. Some people can hack or bug this script using hack programs.. i already post it in here before but im not satisfied with the feedbacks that ive receive.. Im really affraid to use dynamic shop or multi currency shop because of this... any body can figure it out why?
  2. if agitstart it will enable the npc name prizegiver help me with this one pls
  3. 9157,Red_valkyrie_helm,Red valkyrie helm,5,12000,,400,,4,,1,0xFFFFFFFF,7,2,256,,0,1,1177,{ bonus bDex,2; bonus bStr,10; bonus2 bAddRace,RC_DemiHuman,12; },{},{} for itemslotcounttable 9157#1#
  4. I already put it on the itemslotcounttable.txt but still see the picture below
  5. /* 15,prtg_cas01,Kriemhild,Agit#prtg_cas01,1 // kRO : Creamhilt 16,prtg_cas02,Swanhild,Agit#prtg_cas02,1 // kRO : Sbanhealt 17,prtg_cas03,Fadhgridh,Agit#prtg_cas03,1 // kRO : Lazrigees 18,prtg_cas04,Skoegul,Agit#prtg_cas04,1 // kRO : Squagul 19,prtg_cas05,Gondul,Agit#prtg_cas05,1 // kRO : Guindull prontera castles ... so only need to use agitcheck(), not agitcheck2() */ prontera,146,168,5 script Woe Prize 100,{ // setcastledata "prtg_cas05", 1, getcharid(2); // just testing .. if ( agitcheck() ) { mes "a war is currently in progress"; mes "if your guild owned a castle ask your guild master to see me to claim the reward"; close; } set .@menu, select(.menu$) -1; if ( getcastledata("prtg_cas0"+( .@menu +1 ), 1) == getcharid(2) ) { if ( $castle_claimed & pow(2, .@menu) ) { mes "your guild already received the reward for "+ .castlename$[.@menu]; close; } else if ( getguildmasterid( getcharid(2) ) == getcharid(0) ) { mes "receiving the reward for "+ .castlename$[.@menu]; getitem 12187, 1 * (18 - .@menu); // some mathematics ... set $castle_claimed, $castle_claimed | pow(2, .@menu); close; } else { mes "ask your guild master to see me"; close; } } mes "your guild failed to take "+ .castlename$[.@menu]; mes "if your guild owned a castle ask your guild master to claim reward from me"; close; OnAgitEnd: set $castle_claimed, 0; // everytime woe ends the variable resets end; OnInit: setarray .castlename$, "Get Reward"; for ( set .@i, 0; .@i < 5; set .@i, .@i +1 ) set .menu$, .menu$ + .castlename$[.@i] +":"; } Help me to edit this that agitstart2 and agitend2 will not get the reward help me pls
  6. Using agitstart2 and agitend2 the script will still give a prize... i want that it will only accept agitstart and agtiend /*15,prtg_cas01,Kriemhild,Agit#prtg_cas01,1 // kRO : Creamhilt16,prtg_cas02,Swanhild,Agit#prtg_cas02,1 // kRO : Sbanhealt17,prtg_cas03,Fadhgridh,Agit#prtg_cas03,1 // kRO : Lazrigees18,prtg_cas04,Skoegul,Agit#prtg_cas04,1 // kRO : Squagul19,prtg_cas05,Gondul,Agit#prtg_cas05,1 // kRO : Guindullprontera castles ... so only need to use agitcheck(), not agitcheck2()*/prontera,146,168,5 script Woe Prize 100,{// setcastledata "prtg_cas05", 1, getcharid(2); // just testing .. if ( agitcheck() ) { mes "a war is currently in progress"; mes "if your guild owned a castle ask your guild master to see me to claim the reward"; close; } set .@menu, select(.menu$) -1; if ( getcastledata("prtg_cas0"+( .@menu +1 ), 1) == getcharid(2) ) { if ( $castle_claimed & pow(2, .@menu) ) { mes "your guild already received the reward for "+ .castlename$[.@menu]; close; } else if ( getguildmasterid( getcharid(2) ) == getcharid(0) ) { mes "receiving the reward for "+ .castlename$[.@menu]; getitem 12187, 1 * (18 - .@menu); // some mathematics ... set $castle_claimed, $castle_claimed | pow(2, .@menu); close; } else { mes "ask your guild master to see me"; close; } } mes "your guild failed to take "+ .castlename$[.@menu]; mes "if your guild owned a castle ask your guild master to claim reward from me"; close;OnAgitEnd: set $castle_claimed, 0; // everytime woe ends the variable resets end;OnInit: setarray .castlename$, "Get Reward"; for ( set .@i, 0; .@i < 5; set .@i, .@i +1 ) set .menu$, .menu$ + .castlename$[.@i] +":";}
  7. /* 15,prtg_cas01,Kriemhild,Agit#prtg_cas01,1 // kRO : Creamhilt 16,prtg_cas02,Swanhild,Agit#prtg_cas02,1 // kRO : Sbanhealt 17,prtg_cas03,Fadhgridh,Agit#prtg_cas03,1 // kRO : Lazrigees 18,prtg_cas04,Skoegul,Agit#prtg_cas04,1 // kRO : Squagul 19,prtg_cas05,Gondul,Agit#prtg_cas05,1 // kRO : Guindull prontera castles ... so only need to use agitcheck(), not agitcheck2() */ prontera,146,168,5 script Woe Prize 100,{ // setcastledata "prtg_cas05", 1, getcharid(2); // just testing .. if ( agitcheck() ) { mes "a war is currently in progress"; mes "if your guild owned a castle ask your guild master to see me to claim the reward"; close; } set .@menu, select(.menu$) -1; if ( getcastledata("prtg_cas0"+( .@menu +1 ), 1) == getcharid(2) ) { if ( $castle_claimed & pow(2, .@menu) ) { mes "your guild already received the reward for "+ .castlename$[.@menu]; close; } else if ( getguildmasterid( getcharid(2) ) == getcharid(0) ) { mes "receiving the reward for "+ .castlename$[.@menu]; getitem 12187, 1 * (18 - .@menu); // some mathematics ... set $castle_claimed, $castle_claimed | pow(2, .@menu); close; } else { mes "ask your guild master to see me"; close; } } mes "your guild failed to take "+ .castlename$[.@menu]; mes "if your guild owned a castle ask your guild master to claim reward from me"; close; OnAgitEnd: set $castle_claimed, 0; // everytime woe ends the variable resets end; OnInit: setarray .castlename$, "Get Reward"; for ( set .@i, 0; .@i < 5; set .@i, .@i +1 ) set .menu$, .menu$ + .castlename$[.@i] +":"; } Using That code that i've found out in eathena.ws agitend and agitend2 both of the commands are able to give prize to the Guild leader... I need help to separate the codes, 1 for Agitstart and agitend and also 1 script for SE or Agitstart2 and Agitend2 Thank you in advance.
  8. kung gusto mo no hassle mag hamachi k nlng total sabi mo pang tropa mo lang yang ragnarok mo d best is ung hamachi 20 players limit ata ang kaya nian..
  9. I alread solved it THANK YOU VERY MUCH Sir Jey God bless to you and your family!
  10. oops im sorry my mistake it will display the Right but in milisecond only... how to display the Right or Wrong in long period of time .. thank you very much for helping me,
  11. i've tried the program but it seems that when im going to enter the answer the program will terminate
  12. Thank you for your reply. but im having error when i used it can you help me to have the full code? im really sorry im just a beginner..
  13. #include<iostream.h> #include<conio.h> main() { clrscr(); int a,b,c,d; cout<<"Welcome To Word Fruit Hunt!\n"; cout<<"Please Choose you Game Mode "; cout<<"Just Type\n 1 for Easy\n 2 for Medium\n 3 for Hard\n"; cout<<"Type Here: "; cin>>a; { if(a==1) cout<<"A X O B\nP Z ? C\n? D A N\nL O N D\nE Q G O\nI W ? T\n"; else if (a==2) cout<<" P I N E T L\n D A N G E R\n M A P M O R\n S C O A D E\n Q N R Z Y P\n A U S T I A\n"; else if (a==3) cout<<"A B E M G J L S D\nG R A P E S K P R\nC D F I H L Q N O\nU Z O L E M O P F\nX W B Z Y V U N T"; } getch(); return 0; } Im really beginner to C++ but i know some of you is Expert so i really need your help The answer is Fixed.. this project is C++ game projet. I need that if you type the answer in game mode 1 example the 1st answer is Apple or Orange it will cout your correct else Wrong.. in game mode 2 the same but the fixed answer is papaya and lemon. in game mode 3 the fixed answer is pomelo grapes and melon Thank you in advance.. Hoping for fast reply..
  14. i already check it but its complete
  15. i got error in hairstyle number 21 the rest are alright please help me
  16. i already tried it all but nothing happens when i put some customs.
  17. I already tried many times of compiling my lua to lub but as always nothing happens when i drag the accname and accessoryid.lua in compile gui. also if normal accname.lua and accessoryid.lua without other customs added, its working when i compile it please help me.
  18. i really dont know what to do sir. because i use my old sql and revison 14009M and im going to transfer the sql to 3ceam 650? is that possible and how please im newbie and i need some detailed guide thank you for your patience sir. im really sorry for being noob in this topic. please continue helping me.
  19. hi brian Im still confused because currently Im using the Old sql table . do u mean that if i use my renewal sql i need to execute all the upgrade_svn*****.sql in the renewal sql table?
  20. Is it possible to use sql table of an old server to transfer the items and account or etc in renewal server?
×
×
  • Create New...