Jump to content

Kakaroto

Members
  • Posts

    638
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Kakaroto

  1. No error in map_server.
  2. Infos: Processor: Intel Xeon E3-1231 Memory: 32gb Band: 100mb Graph:
  3. Well, I do not know exactly what happens, but my server crashes when I put the emulator rathena, I have a dedicated dedicated to run many things, runs any emulator quietly, but when I put the rathena, the game is stuck, and does not consume nor 5% of memory. Does anyone know what it can be and could help me?
  4. 2008,9,6,2,3,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x40000,0,weapon,0,0x0, RK_DRAGONBREATH,Dragon Breath like? 2008,9,6,2,3,0x50,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x40000,0,weapon,0,0x0, RK_DRAGONBREATH,Dragon Breath
  5. But what I want is to remove damage increase in races, humanoid race type, using KVM weapons for example.
  6. Comece com essas: https://raw.githubusercontent.com/rathena/rathena/master/sql-files/main.sql https://raw.githubusercontent.com/rathena/rathena/master/sql-files/logs.sql
  7. How do I remove the effect of racial damage?
  8. Hello, I would like to know if anyone can help me, I would like to change the 'DragonBreath' ability formula to use the following modifiers: Size/Race/Atk in which it shouldn't since it has no weapon and equip atk however it should also get reductions. Thank you very much who can help!
  9. Hello, I would like to know if someone could provide an npc that exchanges items via SQL, and that uses npcshopattach to view the items ... Thanks in advance.
  10. @Cydh Compiling in windows does not appear any error message, however compile in CentOS 7, the following alerts appear in the terminal:
  11. Never buy GepardShield through facebook, a guy called 'Andy Mendonza' is a scam, I bought it and ended up giving myself a bad thing, so be very careful. This page is totally fake. https://www.facebook.com/gepardshield/
  12. Well, I tried to buy the shield, I paid, but the guy just does not want to give me the product, he ignores the messages, so stick with the tip, do not fall for this blow. I paid the product on the 15th of that month, 15 days later I still have not received it, I send a message on facebook, the guy reads, then ignores.
  13. Outdated, no longer works with the current rathena.
  14. @HappyMan I just need the players to see the items, type a listing of an ordinary store, the item appears, it drags to the buy and sell window it. I have the script, could you help me update it? /==================================================================================== //Script Name: Vote For Points NPC Script for FluxCP //SVN: Tested in rAthena r156513 //Developed By: JayPee Mateo //Version: 1.0 //Requirement(s): FluxCP V4P Addon //Description: This is a npc script for FluxCP Vote for points in order for the players //to claim their vote points //==================================================================================== royal_room3,80,136,5 script VoteForPoints 89,{ //Function Prototypes function garbagecol;//Garbage collection for the Character variables garbagecol(); function add_item; //Syntanx: add_item(ITEMID,QUANTITY,POINTS,CATEGORY); function makeCategory;//This will return a list of the categories function getItemsByCat;//This will return the list of items associated to the particular category function getItemDetails;//This will return the details of the item function getPoints;//This will return the points of the player stored in the database function updatePoints;//This will updates the points of the player stored in the database //NPC Name set .npcname$,"[ Vote For Points ]"; //Initialization of the Rewards add_item(555,1,100,"Hello"); add_item(556,2,101,"Hello"); add_item(557,3,101,"Hello1"); //Script Start mes .npcname$; mes "Hi! Do you want to exchange your vote points?:"; switch(select("Yes, I want to exchange my points:See my points")) { case 1: next; mes .npcname$; mes "Please choose a category:"; set .@selected,select(makeCategory())-1; next; mes .npcname$; mes "Please the item you want:"; set .@selected,select(getItemsByCat(@listCat$[.@selected]))-1; next; mes .npcname$; set .@ritemid,getItemDetails(@itemKeys[.@selected],"itemid"); set .@rquantity,getItemDetails(@itemKeys[.@selected],"quantity"); set .@rpoints,getItemDetails(@itemKeys[.@selected],"points"); mes "Item ID:"+.@ritemid; mes "Item Name: "+getitemname(.@ritemid); mes "Item Quantity: "+.@rquantity+" pc(s)."; mes "Required Points: "+.@rpoints+" pt(s)."; mes "\n"; mes "Do you want to this item?"; if(select("Yes:No")==1) { set .@points,getPoints(getcharid(3)); if(.@points>=.@rpoints) { next; mes .npcname$; updatePoints(getcharid(3),.@rpoints); getitem .@ritemid,.@rquantity; mes "Here you go!. Thank you for voting. Don't forget to vote again. :D"; } else mes "Sorry, you do not have enough points for this item."; } else { next; mes .npcname$; mes "Okay bye!"; } garbagecol(); close; case 2: next; mes .npcname$; set .@points,getPoints(getcharid(3)); mes "You currently have "+.@points+" pt(s)."; garbagecol(); close; } end; //Functions Bodies function updatePoints { set .@account_id,getarg(0); set .@usedPoints,getarg(1); query_sql("UPDATE `cp_v4p_voters` SET points=(points-"+.@usedPoints+") WHERE account_id='"+.@account_id+"'"); return; } function getPoints { set .@account_id,getarg(0); query_sql("SELECT `points` FROM `cp_v4p_voters` WHERE account_id="+.@account_id+" LIMIT 1",.@points); if(getarraysize(.@points)==0) return 0; return .@points[0]; } function getItemDetails { set .@key,getarg(0); //Key set .@detail$,getarg(1); //What details to return such as ItemID, Points, Quantity, Category if(strtolower(.@detail$) == strtolower("ItemID")) return @itemID[.@key]; else if(strtolower(.@detail$) == strtolower("Quantity")) return @itemQ[.@key]; else if(strtolower(.@detail$) == strtolower("Points")) return @points[.@key]; else if(strtolower(.@detail$) == strtolower("Category")) return @category$[.@key]; } function getItemsByCat { set .@selectedCat$,getarg(0); set .@make_string$,""; set .@x,0; for(set .@i,0; .@i<getarraysize(@category$); set .@i,.@i+1) { if(strtolower(.@selectedCat$) == strtolower(@category$[.@i])) { setarray @itemKeys[.@x],.@i; if(.@make_string$ == "") set .@make_string$,getitemname(@itemID[.@i]); else set .@make_string$,.@make_string$+":"+getitemname(@itemID[.@i]); set .@x,.@x+1; } } return .@make_string$; } function makeCategory { set .@make_string$,""; for(set .@i,0; .@i<getarraysize(@category$); set .@i,.@i+1) { if(.@make_string$ == "") { setarray @listCat$[getarraysize(@listCat$)],@category$[.@i]; set .@make_string$,@category$[.@i]; } else { if(compare(.@make_string$,@category$[.@i])==0) { setarray @listCat$[getarraysize(@listCat$)],@category$[.@i]; set .@make_string$,.@make_string$+":"+@category$[.@i]; } } } return .@make_string$; } function add_item { set .@itemID,getarg(0,-1); //IteID set .@itemQ,getarg(1,-1); //Item Quantity set .@points,getarg(2,-1); set .@cat$,getarg(3,"Uncategorized"); //Category if(.@itemID == -1) { debugmes "Invalid Item ID. Script not completely loaded."; end; } else if(.@itemQ == -1) { debugmes "Invalid Item Quantity. Script not completely loaded."; end; } else if(.@points == -1) { debugmes "Points assignment error. Script not completely loaded."; end; } set .@key,getarraysize(@itemID); setarray @itemID[.@key],.@itemID; setarray @itemQ[.@key],.@itemQ; setarray @points[.@key],.@points; setarray @category$[.@key],.@cat$; return 1; //return 1 as success } function garbagecol{ deletearray @itemID[0],128; deletearray @itemQ[0],128; deletearray @points[0],128; deletearray @category$[0],128; deletearray @listCat$[0],128; deletearray @itemKeys[0],128; return; } }
  15. Hello, does anyone have any vote-point npc based on fluxcp that allows you to view the items before buying them? I am very grateful to anyone who can help me!
  16. @Cydh A small suggestion. As soon as the player enters the game, the channel name appears in the PM bar, so he does not need to enter the channel name. Players are lazy!
  17. This expansion is simply wonderful. Congratulations on the work!
  18. Hello, I would like to ask someone to update the Euphy WoE control script, to support WOE TE. Could somebody be nice to do that? I've tried it but I'm not very good at it! e.e Thanks in advance! LINK
  19. You need 'RE' client for this.
  20. There is an old bug in the fluxCP panel, which when you reset the character's appearance, the item equipped in the robe is unequipped, but continues with its ID in the DB, making the character look like the item without it equipped. Does anyone know how to solve this?
  21. Did you make any changes to the texts in the help.txt file? Errors sometimes happen so if you have placed special characters or the file is corrupted.
×
×
  • Create New...