rexxar31 Posted April 29, 2012 Group: Members Topic Count: 62 Topics Per Day: 0.01 Content Count: 137 Reputation: 0 Joined: 04/07/12 Last Seen: May 17, 2012 Share Posted April 29, 2012 when i rent a cart and when i reconnect the cart is gone.. how to fix this? thanks Quote Link to comment Share on other sites More sharing options...
Emistry Posted April 29, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted April 29, 2012 what cart ? merchant cart ? do you have any script that remove users cart upon login ? check your script... Quote Link to comment Share on other sites More sharing options...
rexxar31 Posted April 29, 2012 Group: Members Topic Count: 62 Topics Per Day: 0.01 Content Count: 137 Reputation: 0 Joined: 04/07/12 Last Seen: May 17, 2012 Author Share Posted April 29, 2012 (edited) //===== eAthena Script ======================================= //= Custom Free Breeder aka Universal Renter (not reccomended) //===== By: ================================================== //= eAthena Team //===== Current Version: ===================================== //= 1.7 //===== Compatible With: ===================================== //= eAthena 1.0 Final + //===== Description: ========================================= //= A Free PecoPeco and Falcon Breeder //===== Additional Comments: ================================= //= 1.1 FIXED checkriding/cart/falcon funcs [Lupus] //= 1.2 Added Rebirth/Advanced Class support [Mass Zero] //= 1.3 Simplified the checks of job [silentdragon] //= 1.3a Fixed a Typo Error. [samuray22] // -Thanks to ~AnnieRuru~. //= 1.4 Optimized Script. No need for 50 million Labels. [spre] //= Added renting of Dragons . [The Quality Maker] //= 1.5 Added option for Gryphons and fixed problem with Peco and Rune Knight. [Ryo-Kun] //= 1.6 Added provisory renting of Magic Gear. [Viktus] //= 1.7 Fixed for 3CeAM Emulator.[Kimimaro] //============================================================ prontera,143,179,5 script Universal Rental Npc 459,{ mes "[universal Rental Npc]"; mes "Hi, here you can rent Carts, Falcons, Pecopecos."; next; switch(select("Cart:Falcon:Peco")) { case 1: if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0 && getskilllv("MC_PUSHCART")>0) { setcart; close; }else{ mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 2: if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0 && getskilllv("HT_FALCON")>0) { setfalcon; close; }else{ mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } case 3: if (BaseJob != Job_Swordman && BaseClass == Job_Swordman && checkriding() == 0 && getskilllv("KN_RIDING")>0 && Class != 4054 && Class != 4060 && Class != 4066 && Class != 4073) { setriding; close; }else{ mes "[universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; close; } } } this is my rental npc.. and no other script deals with rental of carts peco and falcon.. BTW im using eathena. Edited April 30, 2012 by Brian use [codebox] for scripts/code longer than 10 lines Quote Link to comment Share on other sites More sharing options...
Question
rexxar31
when i rent a cart and when i reconnect the cart is gone.. how to fix this? thanks
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.