Jump to content

letstry

Members
  • Posts

    219
  • Joined

  • Last visited

Everything posted by letstry

  1. Hi guys, I would like to request something like a private dead branch room but this is for something else. Lets say it is for hourly room and such. There will be 10 maximum rooms. map is village1-1, village1-2, village1-3 and so on To enter the map, you'll need an item for example 30pcs jellopy. If a room is already occupied, you wont be able to enter of course. The time limit for the room is only 1 hour. Thank you! UP
  2. I guess I should've posted this on source support. Is there a way to fix this?
  3. The map is already set on PVP. Server type is PK UPPPPP
  4. Is there a way for a player to use a certain command that is disabled in a map? My @pkmode system: Players can turn their pkmode to on or off ONLY IF they are at a town or non-pk maps. My @go 15 is our Main PK Grounds so I what I wanted is that all players who enter the area will turn their PK on no matter what. - script go15pkmode -1,{ OnPCLoadMapEvent: if (strcharinfo(3) == "new_1-1") atcommand "@pkmode 1"; end; } // - Map flags new_1-1 mapflag loadevent Here's what it shows whenever they enter go 15 "Sorry, You Cant Use This Command Your Current Map." Is there a way to bypass the condition just by using a script? Thanks! Up
  5. But I also have some international players so Im really looking for a LA, California one. By the way, what is your current ping on gomanilahost.net? May I have a test IP for it? Thanks!
  6. All of my server-side and client-side files are almost ready to go but I'm currently having problems with my current hosting. I am from the Philippines and my current host gives me around 215 ping. Which RO Hosting provider will you suggest for me? I would like to get around 160 - 180 ping so me and my players would be able to play smoother. Thanks in advance! Trinity Networks - 200 Ping Phyton Hosting - 190 Ping Ragna Hosting - 200 Ping
  7. The damage changes when champ B changes equipments. I tried reverting it back to 14410, the damage is now fixed but the reflect to the Paladin is gone. - Paladin A Devotion Champ A and Paladin B Devotion Champ B - Champ A Asura Champ B, Asura damage is 700k, damage redirected to Paladin B is 700k as well. Damage reflected to Paladin A is 0. I tried reverting it back from 14410 to 14406, the reflect damage is working but the damage changed again.. - Asura damage is 700k, damage redirected to Paladin is 150k. - Reflected damage is the same amount the damage Champ A took from the reflect Update: The damage has been fixed. Pally A Dont devo Champ A, then Champ A asura Champ B with Devo from Pally B, The damage is being reflected to Champ A and is working well. But When Pally Devos Champ A, then Champ A asura Champ B with Devo from Pally B, The reflect damage is being shown to but no damage was being reflected to Pally A nor Champ A. Up
  8. I'm currently having a problem with Devotion's damage taken from Asura. As you can see in the image above, I've dealt 141,442 damage to the champion that was under the Devotion skill of the Paladin. The reflected damage I've taken was 125882. The damage the Paladin has taken was only 69092. The damage the Paladin should have taken should also be 141,442. Have any ideas why this occurs? Up Im using eathena 15085 Sometimes, the damage received by the Paladin is reduced, increased and sometimes just right. Up Tested with Finger offensive and same result. The damage received by the Paladin isn't the same as the damage received by the devoted character. If anyone would be able to help me, I'm willing to pay via Paypal or WU.
  9. letstry

    @storeall

    Hi guys I would like to ask for some help to modify @storeall which will include cart. I've tried modifying it but it still doesn't read the cart. Here's my current @storeall mod. Thanks! ACMD_FUNC(storeall) { int i; nullpo_retr(-1, sd); if (sd->state.storage_flag != 1) { //Open storage. if( storage_storageopen(sd) == 1 ) { clif_displaymessage(fd, "You can't open the storage currently."); return -1; } } // Cart for (i = 0; i < MAX_CART; i++) { if (sd->status.cart[i].amount) { if(sd->status.cart[i].equip != 0) pc_unequipitem(sd, i, 3); storage_storageadd(sd, i, sd->status.cart[i].amount); } } // Inventory for (i = 0; i < MAX_INVENTORY; i++) { if (sd->status.inventory[i].amount) { if(sd->status.inventory[i].equip != 0) pc_unequipitem(sd, i, 3); storage_storageadd(sd, i, sd->status.inventory[i].amount); } } storage_storageclose(sd); clif_displaymessage(fd, "It is done"); return 0; }
  10. Is there a way to check the number of items in the storage and cart? My maximum storage capacity is 600. For Example. If a player talked to the NPC, the NPC will check if his storage is greater than 400 as well check if the cart have an item inside. If the player have more than 400 items inside his/her storage or have more 1 item in his cart, the npc will tell him to go away. Thanks!
  11. Hi Guys, I tried searching for this kind of prontera map in the downloads section but I have failed. Does anybody know what is the name of this prontera theme and where will I be able to download it? Thanks! Up!
  12. Is there a way to add additional advantages and disadvantages to an account? Something like this - script Bonus -,{ set @addbonus,getcharid(3); set @addminus,getcharid(3); if(@addbonus==2000000||2000001) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; } if(@addminus==2000002||2000003) { bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; } } Thanks!
  13. How would I do that without changing my customize codings? =(
  14. Bumpppy Im using eathena-sql-15085 SVN
  15. Here's a screenshot.. eAthena-SQL-15085 SVN
×
×
  • Create New...