Just replace the job sprite without mount with the sprite with mount, example without mount the sprite is sprite_nomount.spr/act then the wiht mount is sprite_mount.spr/act. The sprite without mount will be replaced with withmount so that when use mount the client's readable sprite is the one you placed withoutmount but the effect of riding and cavalry mastery is still there
Is it possible for the mercenary to have his drop rate next to his master droprate, suppose the server is x5 drop rate then the master becomes VIP the master droprate will be x10 then the mercenary will also have the droprate x10, when the vip is expired the mercenary will also return to the normal droprate x5
can i request a simple bank sql base deposit and withdrawal only
Menu:
Deposit -> Can deposit any amount ( 2% tax ) if possible the 2% tax will go to the "tax" field under the "login table" just to find out how much the player's tax contribution is when using this bank
Withdraw -> Can withdraw upto 1b only
Balance -> Can check their balance
The database I will use is the login table, I created a new field whose name is deposit, thank you very much
The source is no error but when i try to use it, Type: Armor / Usable / Etc / Charm its not working
edit.. its working
Earlier he Type: ETC and there i switched to Type: Charm but I didn't re @item again
1) if your question how to link your ip to your domain you need to edit your DNS in your domain manager and point your ip address,
2) if you are referring to the ip you will make domain with name, you need to register a domain first.. then do the #1
Yes because you are using old rathena,, thats why no name_japanese try reexecute the latest rathena sql here https://github.com/rathena/rathena/tree/master/sql-files
i think you are not using latest rathena version ok lets open your mysql/phpmyadmin and go to item_db's table and click the structure and drop the name_japanese
Your rAthena files is clean? or already have gepard patch in your rathena but your client.exe is not? check your conf /gepard_shield.conf disable your gepard gepard_shield_enabled: no
I think your client cant read your GRF because the Ok button is korean,, double check your data.ini or your hardcoded data.ini if your main grf is priority
Yah thanks for correction, everything is working fine and im using it now, i try to edit your code
i want to make similar this i tried to modified your code and change the Class to JobID 4010 and class_arr[.@size] = .@class; to class_arr[.@size] = .@class, set #HWPoints,#HWPoints +1; but not working
- script test123 -1,{
OnPCKillEvent:
.@self = getcharid(3);
if (killedrid == .@self) end;
attachrid killedrid;
.@class = 4010;
attachrid .@self;
.@index = inarray(class_arr, .@class);
if (.@index == -1) {
.@size = getarraysize(class_arr);
class_arr[.@size] = .@class, set #HWPoints,#HWPoints + 1;
count_arr[.@size] = 1;
} else
cleararray count_arr[.@index], count_arr[.@index] + 1, 1;
end;
}