Jump to content

Onairda

Members
  • Posts

    164
  • Joined

  • Last visited

Everything posted by Onairda

  1. Hello is this possible in game? Open an Application in windows using NPC script in game? Thank you
  2. Hello, Can someone help me to edit this script to only count 1 hour and 20 minutes then refresh again to 1 hour and 20 minutes: because I have an event that starts every 1 hour and 20 minutes. prontera,150,150,5 script HourTimer 111,{ OnInit: while( .@a != 1 ){ delwaitingroom; waitingroom ""+gettimestr( "%H:%M:%S %p",15),0; sleep 1000; } end; }
  3. Hello Good day! I am planning to create a Global function that will be used by different NPCs at the same time, and this Global function requires the variable. please see the below. I have an Idea in C#, but not sure how this will work with Rathena //------------------------ Test.txt - SCript Prontera,150,150 - - - -{ mes "Input 1st Number:"; input .@FirstNumber; next; mes "Input 2nd Number:"; input .@SecondNumber; .@total = callfunc add_numbers(.@FirstNumber, .@secondNumber) } //------------------------ GlobalFunc.txt - Script GLOBAL function add_numbers(a, b) result = a + b query_sql(Insert result to addition_tbl) return result end
  4. Hello Is bonus bonus bVariableCastrate,-30; o can be placed on Potion? for example when a potion is used it will last up to 30 minutes then the effect will be gone. Please help/guide how to it?
  5. Onairda

    GIF Emblem

    Solved! Use 2020 or any Clients that support HTTP Emblem (Diffed in Nemo)
  6. I change my exe to 2020 that supports HTTP emblem, then thats it. I used NEMO by the way.
  7. Hello sorry for the long response :D. I tried creating a custom DLL. However, I don't know how to load it using use custom DLL in NEMO, maybe you can help me? I tried loading in the DLL I've created but not working Here is the error: bump thank you done it using Visual Studio. Thank you!
  8. My Webserv.bat is working and no error. However, it don't know where to place the emblem folder and the emblem's. Im using 2019 client will it work?
  9. Onairda

    GIF Emblem

    Hello I've noticed that the latest rathena git have web-server.bat, I am just think how to enable this so I can use GIF emblem? and also is this fit to work with 2019-06.05f clients? Thank you so much
  10. hahaha, thanks for replying . but this is not what i asked . Thank you so much Winterfox, this what I need
  11. Do we have a table in the database where we can track all the bought and sold items in the NPC? I am talking for the whole NPC inside the Ragnarok. I don't need a custom script to manually insert it in the database I want the default NPC script used inside the game. like the tool dealer, if someone buys and sells items to the tool dealer it will be recorded. thank you
  12. Hello as the tittle say How can I find the HP and SP bar names in GRF? I think I deleted it accidentally that's why the HP and SP bars vanished.
  13. Hello Everyone, I was hoping if you could help me, to have the below script work. What I want is create a random generator code "Transaction Code" temporarily, which means only transacting players can see the generated Transaction Code and even 100 players using the script it wont give the same Transaction Code. prontera,155,155,3 script TESTSTE 92,{ setarray .coupon_code$[0],"A","B","C","D","E","F","G","H","I","J","K","L", "M","N","O","P","Q","R","S","T","U","V","W","X", "Y","Z","0","1","2","3","4","5","6","7","8","9"; set .@new_transaction$, ""; set .@code_exists$, 0; mes "test"; while (@code_exists == 0) { for (set @i, 0; @i < 6; set @i, @i+1) { set .@random_char$, rand(0, (getarraysize(.coupon_code$) - 1)); set .@new_transaction$, .@new_transaction$ + .coupon_code$[.@random_char$]; } query_sql("SELECT COUNT(*) FROM transaction_tbl WHERE transaction_code='" + .@new_transaction$ + "'", .@code_count); if (.@code_count == 0) { set .@code_exists$, 1; query_sql("INSERT INTO transaction_tbl (transaction_code) VALUES ('" + .@new_transaction$ + "')"); mes "Transaction Code: " + .@new_transaction$ + " inserted into the database."; } else { set .@new_transaction$, ""; } } set .@new_transaction$, ""; close; } Thank you
  14. Hello L1nkz, Can someone provide the steps for using this Rpatchur? I am already able to build the Rpatchur. However, I don't know what folder and files to edit the data for the website. is it on the Rpatchure folder? or the Example folder rpatchur.yml? Please help Thank you
  15. wow thanks for this could you show some example how to define it in script? ? thanks
  16. I mean the function to send email thru Script :). Is it existing now?
  17. anyone? please love it. Thanks Emistry your fan since 2012
  18. Hello Everyone! Just want to ask if this is possible. I want to create an Insert script that will be directed to my another database and this database was not in the vps where my raganarok svn was running. Thank you
  19. Error occured on latest rAthena. please see below. thanks for your help
  20. Hello Everyone, I hope you'll have a great day :). Can someone provide the sprite name and the location in the GRF of all the 1st Class High sprite, please? Note: 1st class High only ( Novice High, Thief High, Swordsman High, and so on ). Thank you
  21. Hello Poring king ? I really appreciate your response. Thank you! <3. However, I already resolved the issue by downgrading from MySQL server 8.+ to MySQL Server 5.+ .
  22. Solved! MySQL Server version 8+ is the problem. Solved by downgrading to MySQL server 5.+ version.
×
×
  • Create New...