Jump to content

Ximboliex

Community
  • Content Count

    270
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Ximboliex

  1. https://mega.nz/#!v5Yy2IbD!T3F2GRi1gZXtmBLT-RtbJpah-vd5-kGvL8GlKWRdex4
  2. Hi @Vasil!; No problem https://mega.nz/#!v5Yy2IbD!T3F2GRi1gZXtmBLT-RtbJpah-vd5-kGvL8GlKWRdex4
  3. Hi!, Any have Black skin 4.0 by laboe to 2.4 client ? If you have it Please post it --Edit: already get it
  4. Check ticket Coords in itemeffect.lua
  5. Hi @johan, i dont know if this tool work on IGS 2.4 anyway test yourself https://mega.nz/#!Hp4jnCrK!u966xyy62NGErziZ5E5_iO-1WZ37o5pU0zOO9GfnoEQ
  6. @Wrexor Need to 2.4, only to 1.x?
  7. Ximboliex

    Swing

    @Vasil only topII swings sorry.
  8. @Vasil Try this inside skill local MapA = GetChaMapName( ATKER ) local MapD = GetChaMapName( DEFER ) local mob = GetChaTypeID( DEFER ) if MapA == "garner2" or MapD == "garner2" and mob >4 then -- 0 for damage all players and 4 only mobs dmg = dmg*5 elseif mob == 985 then --If you want put diferent dmg to Boss dmg = dmg*5 end
  9. Ximboliex

    New Glows

    That effect is within Runestone Client make by @BlackBarba any questions talk whit him
  10. Hi! PKODev Need your help please' This was a scripts that I intrigue, when you hit the mob you add an amount of money either based on your max or a formula credited by the scripter, the author of such scripts is Fisal Mohamed of GPKO, some of you have knowledge of How to create such scripts or tell me where you can run this scripts
  11. For pko 1.3x change item type 84 to 44 and characterposeinfo.txt line or characteraction.tx don't remember it @Vasil know more about theme..
  12. Ximboliex

    Swing

    Hi! @Rinor https://mega.nz/#!S0xljQAA!UZvOFLImCPyRlNVrgvCdYi6n3MxBBm7BntcDVAxgDqQ
  13. @GustavoHMA where i get Tradetools.exe ?
  14. Yes. To me it works perfectly in any map and only the damage is x5 to the mobs.
  15. local is_mob = GetChaTypeID(DEFER) if is_mob >4 then dmg = dmg*5 end "Xlcz" bolt -- "Bkcj" conch
  16. Exquisite Skin.
  17. Other way "hook" your need runing in your server "hook.lua" function KillMobRep(ignore, dead, atk) local dead_type = GetChaTypeID(dead) if dead_type >4 then AddMasterCredit ( atk, ####) --rep to add end end Hook:AddPostHook("GetExp_PKM",KillMobRep)
  18. Ximboliex

    MERRY XMAS

    ***MERRY XMAS PKODev**
  19. Put only this function into cha_timer: OnlineItemEvent(role, now_tick) And this function at end the function.lua: function OnlineItemEvent(Player, Tick) local Minutes = 0 local Hours = 1 local Time = (Minutes * 60) + (Hours * 60 * 60) local EventItems = {} EventItems[1] = {ID = 0, Quantity = 1} if math.mod(Tick, Time) == 0 and Tick > 0 then local Random = math.random(1, table.getn(EventItems)) GiveItem(Player, 0, EventItems[Random].ID, EventItems[Random].Quantity, 4) BickerNotice(Player, "Congratulations, for being online "..Hours.." hours and "..Minutes.." minutes, you've received "..EventItems[Random].Quantity.."x "..GetItemName(EventItems[Random].ID)..", enjoy!") end end
×
×
  • Create New...