Jump to content

PiK90

Member
  • Posts

    37
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

PiK90 last won the day on November 5 2014

PiK90 had the most liked content!

About PiK90

Informations

  • Gender
    Male

Recent Profile Visitors

982 profile views

PiK90's Achievements

Explorer

Explorer (4/16)

  • Reacting Well
  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done

Recent Badges

9

Reputation

  1. If you use 40k, you already have the function npc.get_level(), as i remember. And you just have to do something like this: if pc.get_level() - npc.get_level() < 10 then x = number(1, 100) if x < 10 then --drop item end end
  2. Have you deleted the HackShield files? Because you forgot to delete the functions calls.
  3. Skill affects are also used to display different effects on characters after you use the skill, and for damage calculations too. I would not remove those affects.
  4. I will start posting some tutorials when i will finish my project, because i am a little busy right now
  5. I will start posting some tutorials when i will finish my project, because i am a little busy right now
  6. #SOLVED I had to move the syntax i highlited in the screenshot to the bottom of the function, after another function was calculated.
  7. This might sound weird, but is the skill list hidden? with ctrl + q combination? If not, search in game.py for this keys presses and check what it does and look if it is done automatically in another function.
  8. #SOLVED I had to move the syntax i highlited in the screenshot to the bottom of the function, after another function was calculated. Hi everybody! I am stucked on an important stage of my project. I need to add one more skill, 7th. I modified the client, it shows in slot, i can train it, the skilled is displayed correctly and i can even send the packet usage for it. I added the motion checks in server too. So it works perfectly, i am not kicked for "potential SKILL_HACK". Excepting that the skill doesn't do any kind of damage. It is not logged in chat as it'd have done damage, it does not appear in logs. Also, the affect is not displayed on the target. 200 SMITE 1 1 1 0 HP -(lv*2+(atk + str*3 + dex*18)*k) 40+130*k 200 -(lv*2+(atk + str*3 + dex*18)*k) ATTACK,USE_MAGIC_DAMAGE SMITE NONE 60*k 5+25*k 40+130*k 0 0 MAGIC 0 1 1000 200 (copy it in notepad) Did anybody added a new skill or created a new one, so i can get some help? I also think it is not the skill files the problem (.mse) as i tried some effects, and i also tried a skill that is already present in client. I am sorry for my english. If you can't understand, just reply and i will try to be more precise.
  9. Do you have in syserr any error? like packet header ones?
  10. The structure of the items 11512, 11714, ... in item_proto might be wrong. Check for all columns and see if they are tabbed correctly or there are more or les columns. As for the header packet error, check the structure of packet with header 21, the structures might be different on server compared to client.
  11. Can you give us a screenshot or something like that so we know what the problem is?
  12. In item_proto client add before the yang another item, a fictive one, just to be there. As i saw, the client doesn't read the first line in protos.
  13. I can't understand very well your problem. Have you tried to create a new skill ? Or you have this error for all skills?
  14. To open it from NPC, edit game.py -> def Teleport(self, getString) function : def Teleport(self, getString): if getString.find("index") != -1: self.teleport.UpdateIndex(int(getString.split("x")[1])) elif getString.find("open") != -1: self.teleport.Open() else: constInfo.SendString = str(self.teleport.SendToServer) constInfo.CApiSetHide = 1 Now open the quest and add the chat statement: when NPC_CODE.chat."Teleport GUI" begin cmdchat("Teleport open") end
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.