

MarkSuck
-
Posts
24 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Posts posted by MarkSuck
-
-
-
-
-
On 9/6/2021 at 4:51 AM, Easycore said:
You can use cutin script.
*cutin "<filename>",<position>; This command will display a picture, usually an NPC illustration, also called cutin, for the currently attached client. The position parameter determines the placement of the illustration and takes following values: 0 bottom left corner 1 bottom middle 2 bottom right corner 3 middle of screen in a movable window with an empty title bar 4 middle of screen without the window header, but still movable 255 clear all displayed cutins
But you also need to copy all the BMP files located in data.grf from 'texture\À¯ÀúÀÎÅÍÆäÀ̽º\cardbmp\' to 'texture\À¯ÀúÀÎÅÍÆäÀ̽º\illust\'.
wow thank you sir!!
-
-
Random Cards with image card.
Can you guide for me or full this script to downloads.
Thank you advance.
-
8 hours ago, BeWan said:
this is paid mod.
Thank you IB.
-
About @at and duplicate id play together
In thai ro it has this fuction Part time system Quest
https://ro-prt.in.th/forum/index.php?app=forums&module=forums&controller=topic&id=96981
Thank you advance.
-
9 minutes ago, Start_ said:
Added permanent skill (push cart). That's it.
Thank you for guide sir.
-
On 6/22/2021 at 7:45 AM, Enoch said:
HELLO GUYS I WANT TO ASK IF THERE'S A SCRIPT THAT CAN RENT A CART FOR ALL JOBS, BUT THE MAX WEIGHT FOR OTHERS JOB IS 2K MAX CART WEIGHT AND FOR MERCHANT CLASSS IS STILL 8K MAX WEIGHT. I HOPE THERE'S ONE THANK YOU VERY MUCH
I found here
-
1
-
-
7 hours ago, Emistry said:
1. if you are checking for total of item count in current inventory
getinventorylist; dispbottom "Your inventory has "+ @inventorylist_count +" items";
2. if you are checking whether the player can hold the upcoming rewards
if (checkweight(512, 100)) { getitem 512, 100; } else { dispbottom "You cant hold 100x Apple."; }
Thank you sir.
I try it's not check item count over 100
exmple. if item count > 80 goto .....
is it possible.
-
22 hours ago, chadness said:
i think you dont need to check for item count because you already have the script for weight check so if ithe item counts will exceed in weight it will already detect it
It's deferent if item count is full 100/100 you can't keep item from any reward.
21 hours ago, chadness said:ow i see got interested to this topic hope someone help you
Hahahaha i hope so..
-
14 minutes ago, chadness said:
Thank you.
I mean when npc or open item reward item store is full it's can't not keep item from them.
how to check by script before open it.
exmple'
if (90 <= .@weight) {
mes "----------- [xxxxxx] -----------";
close;
}It's works fine for check weight.
-
-
Thank you rAthena Team you're the best!
The best ServerRO
The best Team
Thank you.
-
1
-
-
-
3 hours ago, Akkarin said:
It's a web panel and an item that has a menu.. that's literally it.
You can accomplish the same thing by using SQL for your items/mobs and FluxCP (or just phpmyadmin or similar will do) to change the values of an item. The GM item they use in-game will be an item that calls a function, the function provides a message and then a menu, when you select to reload the item db the script will run 'atcommand @reloaditemdb;'.
Very easy to setup if you look at script_commands.txt in the Github repo.
wow Thank you sir.
-
I found this script how they do that.
what is your opinion Will there be a guide?
-
On 9/10/2020 at 1:46 AM, Songbird said:
Try this script I made (Is not tested so it could not work):
prontera,150,150,7 script Quick Sell NPC#QSN1 815,{ goto OnClick; end; OnInit: // = CONFIGURE YOUR NPC HERE ========== // Enter the Item ID the NPC will buy .buyItemID = 999; // If 1, the npc will buy all the item stack at once .buyAllItems = 0; // If .buyAllItems is 0, NPC will buy the quantity set here .buyQuantity = 1; // Show deal message: 1 or not: 0 .showDealMessage = 1; // ==================================== waitingroom "B>" + getitemname(.buyItemID),0; end; OnClick: if (countitem(.buyItemID)) { .@itemPrice = getiteminfo(.buyItemID,1); if (.buyAllItems) { Zeny += .@itemPrice * countitem(.buyItemID); .@zenyEarned = .@itemPrice * countitem(.buyItemID); if (.showDealMessage) dispbottom "You sold " + countitem(.buyItemID) + " " + getitemname(.buyItemID) + " for " + callfunc("F_InsertComma",.@zenyEarned) + " Zeny."; delitem .buyItemID,countitem(.buyItemID); } else { if (.buyQuantity > 1 && countitem(.buyItemID) < .buyQuantity) { Zeny += .@itemPrice * countitem(.buyItemID); .@zenyEarned = .@itemPrice * countitem(.buyItemID); if (.showDealMessage) dispbottom "You sold " + countitem(.buyItemID) + " " + getitemname(.buyItemID) + " for " + callfunc("F_InsertComma",.@zenyEarned) + " Zeny."; delitem .buyItemID,countitem(.buyItemID); } Zeny += .@itemPrice * .buyQuantity; .@zenyEarned = .@itemPrice * .buyQuantity; if (.showDealMessage) dispbottom "You sold " + .buyQuantity + " " + getitemname(.buyItemID) + " for " + callfunc("F_InsertComma",.@zenyEarned) + " Zeny."; delitem .buyItemID,.buyQuantity; } } else { dispbottom "Not enough items to sell."; } end; }
Thank you for this script
How to config muti item id and price.
-
Want to Refresh RODEX Mail by script
refresh every 10 sec.
Thank advance.
Problem about Guild Emblem useing Web Serviec not show.
in Source Support
Posted
Thank you sir i'll try just a moment. ^^