Jump to content

Nerks

Members
  • Posts

    135
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Nerks

  1. Hi guys, Can anyone give me a tips how can i update my Rathena Folder / Server without overwriting my configs and other files that i've already edit? also how can i update my sql on sql-files without overwriting my data as well. Thanks in advance
  2. Sorry sir i'll provide later im still on the office. How can i get lastest hash? i don't know how to update my revision. actually this is what i've did mes "<item>item<info>info</info></item>"; I got it from the script documents on DOC folder at rathena. I'll again it later.
  3. Hi guys i just want to about this code. This code was working on my NPC. the problem is when i run it and click the NPC, all items of text even the link goes upper left corner of the NPC windows. What seems to be the problem? Im using CLIENT 20151104A to be exact. Hope you'll help me. Thanks.
  4. Thanks for the info sir. Now I fully understand the code on the NPC.... Am i right? all the codes on the NPC is for 1 player only.... another reset of code for another player how will interact again?
  5. Hi, Is there any option to get specific mount sprite? like Dragons, Peco ETC. or custom mount?
  6. @llchrisll @Emistry @NotKappa Thank you for your answers Till next time
  7. Good day to all, May i ask where to put my .ACT & .SPR Mount to my GRF so that all my jobs can use mount. Also, I'm planning to create an item equip when you equip it it will show that you'll have a mount. is it possible? if it's possbile, can i request for sample script. Thanks
  8. Is it already included in the NEMO?
  9. Sir @sader1992 so basically it will not change even other player interact with the same NPC?
  10. Base on your answer so i can't use the killerrid in OnPCKillEvent label?
  11. Thanks sir i get your point Back to may question... Does the code NPC only trigger on 1 player? Example. Player 1 click the NPC that has a variable .@playername still on process of npc then suddenly Player 2 click the same NPC with a variable .@playername. My question is.. Does the Player 1 change his variable .@playername data because the Player 2 click the same NPC while the Player 1 still ongoing on that NPC? OR .@playername didn't change?
  12. For clarification. So i can use both variable even i use OnPCDieEvent only and vice versa? Right? can i use this? OnPCDieEvent: .@new_variable_1 = killerrid; .@new_variable_2 = killedrid; dispbottom ".@new_variable_1 = " + .@new_variable_1; dispbottom ".@new_variable_2 = " + .@new_variable_2; end; OnPCKillEvent: .@new_variable_1 = killerrid; .@new_variable_2 = killedrid; dispbottom ".@new_variable_1 = " + .@new_variable_1; dispbottom ".@new_variable_2 = " + .@new_variable_2; end;
  13. One more question. //*OnPCDieEvent: This special label triggers when a player dies. The variable 'killerrid' is set to the ID of the killer. OnPCKillEvent: This special label triggers when a player kills another player. The variable 'killedrid' is set to the ID of the player killed.*// Base on my understanding. The label OnPCDieEvent can only use the variable KILLERRID not the KILLEDRID vice versa. Am i correct? or even your not using OnPCKillEvent you can use the variable KILLEDRID?
  14. Hi @Skorm question.. Does the npc OnPCKillEvent label. how does the code running into that? 1 npc instance share MANY Player OR 1 npc Instance for 1 player
  15. Ang recompiling po isang proseso na kung saan yung mga map-server.exe char-server.exe at log-server.exe ay binubuo natin ulit. Sa madaling salita. Lahat ng pag babago sa files sa loob ng src na folder ay kailangan natin i recompile. Dahil ang lahat ng files sa SRC folder na may .c at .h na extension file ay isang file na meron programming code na ginawa sa C++. Na kung saan ang mga codes nayun at binabasa ng mga server na .exe na ni ru-run mo. EXAMPLE: May binago ka na code sa CHAR.C na file sa loob ng SRC FOLDER. kung yari ang MAX LEVEL na dating 99 pinalitan mo ng 255 pero hindi mo naman nag re-compile kahit buksan mo ang server mo ang MAX LEVEL parin ng server mo is 99.. Kung pinalitan mo ang MAX LEVEL 99 pa puntang MAX LEVEL 255 at nag compile ka. Dun na gagana ang MAX LEVEL mo na 255... PANO MAG RE-COMPILE? Ganito yan. Una mag DL ng program na nakaka basa ng mga .c & .h files tulad ng VISUAL STUDIO C++ 2010,2015,2017. Mas recommended ko na yan ang gamitin mo kasi yan ang ginagamit talaga ng bawat developer. Kasi dyan mo siya i-re-RE-COMPILE. Kung may question kapa i pm mo na lang ako. Happy Developing
  16. Guys question how can i transefer the "killerrid" & "killedrid" to a variable? //*OnPCDieEvent: This special label triggers when a player dies. The variable 'killerrid' is set to the ID of the killer. OnPCKillEvent: This special label triggers when a player kills another player. The variable 'killedrid' is set to the ID of the player killed.*// Thanks
  17. @Skorm & @Z3R0 OMG!!! so it means it's not adviceable to use my SQL SCRIPT I create a PVP SCRIPT that every time a player kill, their point in database base will add plus 1 and when they die they will loose 1 point.. So technically my script is horrible because it will always make a query.. In due time my if there are many player on my server and they all goes to PVP my database will surely collapse Oh my oh my how can i create my own pvp npc with pointing system without database.. i can do only manipulate on database I guess i need to learn more about avariable manipulation Both of you thank you for your suggestion
  18. i mean dba po pag ang zen nag nag click ka 5 soul agad. same din na ganun pag nag click ko ng zen 10 soul agad.
  19. Good day to all, May i hear your suggestion what is the ADVANTAGE and DISADVANTAGE creating a script using VARIABLES and SQL. I create a PVP script on my own using SQL BASE in order to view as well the TOP 10 PVP Player. All i want to know is the bad side using a script and send it to database, while scripting using variable. Thanks in advance
  20. Good day to all, Guys can i have a sample script that when player hit by a specific skill they will get an item... Thank you in advance.
  21. Hi, Converting string to int is very important especially in data manipulation on database. Example is when the specific table only receive integer data, when you input string sometime it gives you warning. Though now a days it is not the issue anymore the new version of mysql can now detect the string and convert it on integer as long as it is not a character letter.
  22. Thanks i'll try this one later
  23. It seems it load on first land on the map? it can check if i drop the item and i pick again and i drop again? ex. i pick candy = true then <condition> i drop candy = true then <condition> i pick again candy = true then <condition> i drop again candy = true then <condition>
  24. Hi to all, Guys can you help me give me some example of script that the live npc detect if the player holding some specific item.... How the NPC detect the specific item on the specific MAP. Thank you for your help in advance. God Bless
×
×
  • Create New...