Onairda Posted September 28, 2021 Group: Members Topic Count: 74 Topics Per Day: 0.02 Content Count: 176 Reputation: 9 Joined: 12/30/16 Last Seen: March 8 Share Posted September 28, 2021 Hello! Can someone help me to edit this script? What I want is If player get killed on the pvp map, he will loose 100,000z, and the player who killed will got 100,000z and white potion. but if the player who got died doesn't have a Zeny the killer will also not get any Zeny and a potion. - script PVPPOINTS -1,{ OnPCKillEvent: getmapxy.@map$,.@x,.@y,0; if(getcharid(3) == killedrid) end; if(.@map$ != "pvp_y_1-2") end; set .@player1, getcharid(3); set .@player2, killedrid; attachrid(.@player2); set .@player2points, #CASHPOINTS; if(.@player2points) { set #CASHPOINTS, #CASHPOINTS - 1; dispbottom "You Lost 1 Cash Point from "+rid2name(killerrid); } emotion e_sob,1; attachrid(.@player1); if(.@player2points) { set #CASHPOINTS, #CASHPOINTS + 1; dispbottom "You Gained 1 Cash Points from "+rid2name(killedrid); } else dispbottom "Sorry no cash points on the "+rid2name(killedrid); emotion e_meh,1; end; } Quote Link to comment Share on other sites More sharing options...
0 Start_ Posted September 28, 2021 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 950 Reputation: 180 Joined: 04/05/13 Last Seen: 3 hours ago Share Posted September 28, 2021 You can use my scripts (Make sure you modify it to your own way) https://raw.githubusercontent.com/kaninhot004/rathena/team-craft/npc/utilities/die_event.txt Quote Link to comment Share on other sites More sharing options...
0 mR L Posted September 29, 2021 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 177 Reputation: 26 Joined: 12/24/14 Last Seen: December 25, 2024 Share Posted September 29, 2021 try this, but not tested - script PVPPOINTS -1,{ OnPCKillEvent: getmapxy.@map$,.@x,.@y,0; if (getcharid(3) == killedrid) end; if (.@map$ != "pvp_y_1-2") end; set .@player1, getcharid(3); set .@player2, killedrid; attachrid(.@player2); if (Zeny > 100000) { set Zeny, Zeny - 100000; dispbottom "You Lost 100.000 Zeny from "+rid2name(killerrid); emotion e_sob,1; } else { dispbottom "Sorry no Zeny on the "+rid2name(killedrid); emotion e_meh,1; } attachrid(.@player1); if (Zeny > 100000) { set Zeny, Zeny + 100000; getitem 504,1; dispbottom "You Gained 100.000 Zeny from "+rid2name(killedrid); dispbottom "You Gained 1 White Potion from "+rid2name(killedrid); } else { dispbottom "Sorry no Zeny on the "+rid2name(killedrid); emotion e_meh,1; } end; } 1 Quote Link to comment Share on other sites More sharing options...
Question
Onairda
Hello!
Can someone help me to edit this script?
What I want is If player get killed on the pvp map, he will loose 100,000z, and the player who killed will got 100,000z and white potion.
but if the player who got died doesn't have a Zeny the killer will also not get any Zeny and a potion.
- script PVPPOINTS -1,{ OnPCKillEvent: getmapxy.@map$,.@x,.@y,0; if(getcharid(3) == killedrid) end; if(.@map$ != "pvp_y_1-2") end; set .@player1, getcharid(3); set .@player2, killedrid; attachrid(.@player2); set .@player2points, #CASHPOINTS; if(.@player2points) { set #CASHPOINTS, #CASHPOINTS - 1; dispbottom "You Lost 1 Cash Point from "+rid2name(killerrid); } emotion e_sob,1; attachrid(.@player1); if(.@player2points) { set #CASHPOINTS, #CASHPOINTS + 1; dispbottom "You Gained 1 Cash Points from "+rid2name(killedrid); } else dispbottom "Sorry no cash points on the "+rid2name(killedrid); emotion e_meh,1; end; }
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.