Jump to content

Ninja

Members
  • Posts

    513
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Ninja

  1. You are welcome. Cheers.
  2. This shows up when you did not do any prior "mes" commands before closing it. What I would suggest is to put something like mes "You have successfully retrieved your Vote points!"; before "close"
  3. UPDATE item_db set `price_sell` = 1 where 1=1; UPDATE item_db2 set `price_sell` = 1 where 1=1; UPDATE item_db_re set `price_sell` = 1 where 1=1; UPDATE item_db2_re set `price_sell` = 1 where 1=1;
  4. it is because it is located in your OnInit part. You should put it after you've moved your NPC somewhere. I think NPC waiting rooms disappear when they are moved to another place unless you used WalkToXy.
  5. Ninja

    Help whosell

    can you please post a screenshot of the exact error?
  6. It is possible but you will have to create a new effect such as "Spell Vampirism" or something like that which needs source edits and db edits. I'm not sure where to point you to but at least I'd let you know that it is possible.
  7. well first of all you have to duplicate that script to an npc that is located where nobody can see him. for example prontera,1,1,1 duplicate(Seek and Crack) GMAthena# 1002
  8. Ninja

    :)

    Yes. You have the option to do that by editing the skill tree in the server db files for the skill tree. You can also create custom skills and change the behavior of skills by doing some source modifications. A lot of people do this to their servers. It is possible by combining source and scripting. Not sure if anybody ever started doing some realism functions. There are a lot of custom maps out there so Yes, it is possible.
  9. Yes it is. To be specific you can use this command *movenpc "<NPC name>",<x>,<y>{,<dir>}; This command looks like the NPCWalkToxy function,but is a little different. While NPCWalkToXY just makes the NPC 'walk' to the coordinates given (which sometimes gives problems if the path isn't a straight line without objects), this command just moves the NPC. It basically warps out and in on the current and given spot. Direction can be used to change the NPC's facing direction. Example: // This will move Bugga from it's old coordinates to the new coordinates at 100,20 (if those coordinates are legit). moveNPC "Bugga",100,20;
  10. Ninja

    :)

    being an open source emulator, you can do just everything but you have to consider the limitations of the client. In general, everything you mentioned is possible.
  11. using IIS is almost the same as using XAMPP. You just have to install the needed PHP version (and its plugins) and it should work correctly.
  12. 1. Temporary variables are freed up once you finish talking to with the npc. 2. All variables(whether temporary or not) can be set and unset manually 3. Your logic is correct regarding #var and ##var 4. Your logic is correct regarding use cases of these variables
  13. So let's break-down these requirements 1. gives out quests depending on your level if (BaseLevel < 80) { mes "You are less than level 80"; //put quest stuff here } else if (BaseLevel <= 99) { mes "You are less than or equal to level 99"; //put quest stuff here } else { mes "You are more than level 99"; //put quest stuff here } close 2. quests would be one-shots if (CharHasTakenThisQuest == 1) { mes "You have already taken this quest"; close; } 3. would have a unique text for the first time you speak if (CharHasAlreadyTalkedToMe == 0) { mes "Hey! This is the first time we've talked!"; set CharHasAlreadyTalkedToMe, 1; } Putting these together would look something like prontera,150,150,5 script ThisSampleNPC 63,{ if (CharHasAlreadyTalkedToMe == 0) { mes "Hey! This is the first time we've talked!"; set CharHasAlreadyTalkedToMe, 1; } if (CharHasTakenThisQuest == 1) { mes "You have already taken this quest"; close; } if (CharQuestIsInProgress == 1) { //validation of quest } if (BaseLevel < 80) { mes "You are less than level 80"; //put quest stuff here } else if (BaseLevel <= 99) { mes "You are less than or equal to level 99"; //put quest stuff here } else { mes "You are more than level 99"; //put quest stuff here } close; } This may not be as clean but more or less it'll look like this. I'll leave the creation and validation of quests to you
  14. If I may suggest on how you should start doing everything, I suggest that you'd use the usual path in learning programming in general. Start with these in sequence: Hello World (Your first script even without knowing anything just making the script work) Basic script structure Different types of Variables Conditional Statements (If-statements vs switch-statements) Looping Statements (While-loops vs For-loops) Timers rAthena specific stuff Mapflags Monster Spawns Instances Warps Coding best practices (Formatting, spacing, etc.) A whole lot of reading through the script_commands.txt of rAthena A whole lot of practice As for your script, It is also important that you come up with test data when you create something, hence, approaches in developments were made (i.e. test-driven development, data-driven development, etc.). Just my piece of advice. Feel free to have it your way
  15. Compiled without errors but not tested. Please try it from your end. //##################################################################### //# # //# ##### # ######## # # ##### ## # # # //# # ### ## # # # # # # ### # //# #### # # ## ###### #### # # # # # # //# # ####### ## # # # # # # ####### # //# ##### # # ## # # ##### # ## # # # //# # //##################################################################### // //=========== Script for eAthena Users ====================// //= Refiner and Repairman made by Rikimaru on eathena .net=// //=========================================================// //======== Description ====================================// //== Easy made Refiner with Repairman for new eAthena =====// //== Users. Please do not remove theese Credits ===========// //== Refines the complete Equipment to +10 and repairs ====// //== All broken items in the Players inventory ============// //================= Version : =============================// //============= V. 1.0 Bug Fixes by Rikimaru ==============// //============= V. 1.1 Added a Derefiner !! ===============// //=========== Credits End =================================// // // //===================== Script of Smith/Repairman =========// prontera,155,180,5 script Smith 63,{ mes "[Smith]"; mes "Hi,I can Refine your"; mes "Equipment to +10"; mes "or Repair your"; mes "Equipment.Also I'm able"; mes "to Derefine your Equipment."; mes "What do you want from me?"; next; switch(select("I want a Repair:I want a Refine:I want a Derefine:Nothing")) { case 1: mes "[Smith]"; mes "Okay I'm going to repair"; mes "your Equipment."; next; while (getbrokenid(1)) { repair(1); set .@i, .@i +1; } if (.@i) dispbottom .@i + " items repaired."; mes "[Smith]"; mes "Congrats!Enjoy!"; close; end; case 2: mes "[Smith]"; mes "Okay I'm going"; mes "to refine your Equipment"; mes "to +10,Thx for using my Service!"; next; for(set @part,1;@part<11;set @part,@part+1) if(getequipisequiped(@part)) while(getequiprefinerycnt(@part) < 10) successrefitem @part; mes "[Smith]"; mes "Congrats Enjoy it!"; close; end; case 3: mes "[ Smith ]"; mes "Okay I'm going to Derifne your Equipment now. You need 10.000 Zeny for that."; next; setarray .@a[1],EQI_HEAD_TOP,EQI_ARMOR,EQI_HAND_L,EQI_HAND_R,EQI_GARMENT,EQI_SHOES; select(getequipname(EQI_HEAD_TOP),getequipname(EQI_ARMOR),getequipname(EQI_HAND_L),getequipname(EQI_HAND_R),getequipname(EQI_GARMENT),getequipname(EQI_SHOES)); if ( !getequipisequiped(@menu) ) { mes "[ Smith ]"; mes "There's nothing equipped there..."; close; } if ( zeny < 10000 ) { mes "[ Smith ]"; mes "You don't have enough zeny"; close; } if ( getequiprefinerycnt(@menu) > 10 || getequiprefinerycnt(@menu) == 0 ) { mes "[ Smith ]"; mes "This item cannot be de-refine."; close; } atcommand "@refine "+ .@a[@menu] +" -10"; set zeny,zeny - 10000; mes "[ Smith ]"; mes "Your item has de-refined successfully"; close; case 4: mes "[ Smith ]"; mes "Okay,come back when you need me."; close; } }
  16. Try this. I haven't tried it because I don't have any environment setup at the moment. /* [======================================================================] ____ _ _ ____ | _ \(_) _ _ (_)_ __ ___ | _ \ ___ | | | | |\ \ / /| | '_ \ / _ \ | |_) / _ \ | |_| | | \ V / | | | | | __/ | _ < (_) | |____/|_| \_/ |_|_| |_|\___| |_| \_\___/ _ _ _ _ _ / \ / \ / \ / \ / \ ( R ) ( a ) ( k ) ( a ) ( y ) \_/ \_/ \_/ \_/ \_/ Scripting [======================================================================] Script: Maquina de Premios [======================================================================] Created by: Rakay~ [======================================================================] Actualizaciones: • None. [======================================================================] Version: 1.0 [======================================================================] Description: Maquina que da Premios Random con Chance x 2 Coin [======================================================================] Credits: Este es un Script de uso Libre para Divine, Respetar. Los Creditos del Autor. Rakay~ [======================================================================] */ prontera,136,171,5 script Maquina de Premios 562,{ set .@Pcant,2; set .@n$, "[^008888 Maquina ^000000]"; mes .@n$; mes "Hola ^008888"+strcharinfo(0)+"^000000!"; mes "Debes Inserta "+.@Pcant+" Poring Coin Para Jugar."; mes " "; mes "Deseas Jugar?"; next; if ( select("Insertar Coins:Salir") == 2 ) { mes .@n$; mes "Ok, Regresa cuando Quieras Jugar."; close; } //End If mes .@n$; if(countitem(7539) < .@Pcant){ mes "Lo Siento, Necesitas "+.@Pcant+" Poring Coin."; close; } set @rand,rand(1,100); //randomize from 1 to 100 delitem 7539,.@Pcant; mes "Iniciemos, Buena Suerte!"; mes "..."; sleep2 1000; mes "......"; sleep2 1000; mes "........."; if(@rand <= .win_chance){ //check if player randomed a number between 1 to (chance of winning) specialeffect 611; specialeffect2 611; mes " "; mes "Lo Siento, No Atrapaste Nada....Intentalo Nuevamente!"; close; } specialeffect 610; specialeffect2 610; mes " "; mes "Exelente, Atrapaste un ["+.cash_prize+"] cash...Regresa Pronto"; set #cash, #cash + .cash_prize; //Add cash to player close; OnInit: set .cash_prize, 100; set .win_chance, 5; end; } You can customize how much cash and how big is the win rate by changing it through the "OnInit" part of the script.
  17. I think we need to know if you're using SQL or TXT? of you're using SQL then definitely anything that you change in the txt files wouldn't grant any effect at all.
  18. Loading cutins are just images shown one after the other. For example, . You have to break it frame by frame depending on how smooth you want the animation to look like (more frames, smoother.) then you just loop them in. e.g. setarray .@ThisLoadingCutin$[0],"LoadingFrame1", "LoadingFrame2", "LoadingFrame3", "LoadingFrame4", "LoadingFrame5"; for (set @j,0; @ < 10; set @j,@j+1){ for (set @i,0; @i < 5; set @i,@i+1) { cutin .@ThisLoadingCutin$[@i], 3; sleep2 1000; } } cutin "", 255;
  19. If you do the OnPCStatCalcEvent make e you adjust your maximum queue size as you will get lots of warnings about it.
  20. Yeah, I mean I just suggested that to check if bit masking is working correctly or not. Interesting. I'll try to check that.
  21. Try this find this in conf/battle/client.conf and change it to 255 // Maximum allowed 'level' value that can be sent in unit packets. // Use together with the aura_lv setting to tell when exactly to show the aura. // NOTE: You also need to adjust the client if you want this to work. // NOTE: Default is 99. Values above 127 will probably behave incorrectly. // NOTE: If you don't know what this does, don't change it!!! max_lv: 99 find this in src/map/map.h and change it to 255 then recompile your server #define MAX_LEVEL 175 make sure your job_exp.txt contains all needed exp tables
  22. Ok, I may sound stupid, but did you recompile your source? Oh, sorry about that. My mistake
  23. Instead of this, try adding them up, hence, 2560 in this field.
  24. Have you tried putting a non-negative number? because in the current implementation of bonus_script in the source, it treats "-1" duration as INVALID_TIMER. I think you only have to put a positive number in the duration and set the 512 bit for the flag. Can you try it and provide feedback?
×
×
  • Create New...