P1ratens Lua Service. menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    P1raten's Avatar Banned
    Reputation
    500
    Join Date
    Mar 2008
    Posts
    1,323
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    P1ratens Lua Service.

    In this service i attempt to fulfill your wishes within the Lua area.

    You can request anything and ill tell you if i can do it.

    P1ratens Lua Service.
  2. #2
    Ground Zero's Avatar ★ Elder ★
    Reputation
    1132
    Join Date
    Aug 2008
    Posts
    3,503
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I would like a fully custom battleground with amazing leet guards who are fully scripted with loads of possible reactions to the players action, eg if a player casts say Frostbolt the guard will use silence and counterattack, do that for every single move and I will be impressed.

  3. #3
    P1raten's Avatar Banned
    Reputation
    500
    Join Date
    Mar 2008
    Posts
    1,323
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ground Zero View Post
    I would like a fully custom battleground with amazing leet guards who are fully scripted with loads of possible reactions to the players action, eg if a player casts say Frostbolt the guard will use silence and counterattack, do that for every single move and I will be impressed.
    ETA 1000 years.

  4. #4
    Ground Zero's Avatar ★ Elder ★
    Reputation
    1132
    Join Date
    Aug 2008
    Posts
    3,503
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by -Jebus Fist- View Post

    ETA 1000 years.

    I am... disappointed.

  5. #5
    AzolexX's Avatar Contributor
    Reputation
    179
    Join Date
    May 2007
    Posts
    587
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That does not look hard, with good idea of BG....guard AI part is joke...

    Find about scripting, programming and music! My blog: https://worldofsmth.wordpress.com!

  6. #6
    TheZaronz's Avatar Active Member
    Reputation
    97
    Join Date
    Dec 2007
    Posts
    567
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is fully doable and not too hard, however you must give the guard a good logic you can't make him react to every single spell in specific but the groups of spells.

  7. #7
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Stay on topic, if you have something to request then request it.

  8. #8
    92eatos's Avatar Contributor
    Reputation
    104
    Join Date
    Aug 2009
    Posts
    220
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i would like scritp for door... i writed mine but all what script is doing is send msg and open door even player dont have item

  9. #9
    P1raten's Avatar Banned
    Reputation
    500
    Join Date
    Mar 2008
    Posts
    1,323
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 92eatos View Post
    i would like scritp for door... i writed mine but all what script is doing is send msg and open door even player dont have item
    Dont really know how to activate the door with Lua.

    I got this far.

    Code:
    function Gameobject_OnUse(Unit, Event, player)
    	if player:HasItem(ITEMIDHERE) then
    end
    
    RegisterGameObjectEvent(DOORIDHERE, 4, "Gameobject_OnUse")

  10. #10
    92eatos's Avatar Contributor
    Reputation
    104
    Join Date
    Aug 2009
    Posts
    220
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is mine try
    Code:
    function dDoor_OnUse(pGO, event, player)
       if player:GetItemCount(193000) > 0 then
          if (pGO:GetUInt32Value(14) == 1) then
             pGO:SetUInt32Value(14, 0x00FFFFFF)
          else
             pGO:SetUInt32Value(14, 1)
          end
       else
          player:SendAreaTriggerMessage("Locked. Please contact the owner if you wish to enter.")
              pGO:SetUInt32Value(14, 0x00FFFFFF)
       end
    end
    
    RegisterGameObjectEvent(191328, 4, "dDoor_OnUse")

  11. #11
    donstrijb999's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i would like a fire spec boss script

  12. #12
    Hellgawd's Avatar Member
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i r lua nub hao do i maek npc cast firebulz halp ty <3

  13. #13
    donstrijb999's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    CastSpellOnTarget(spellID, target)
    that is the cast command only if you need a real script you need to add some stuff
    Last edited by donstrijb999; 02-04-2010 at 12:47 AM.

  14. #14
    P1raten's Avatar Banned
    Reputation
    500
    Join Date
    Mar 2008
    Posts
    1,323
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by donstrijb999 View Post
    Originally Posted by Hellgawd View Post
    i r lua nub hao do i maek npc cast firebulz halp ty <3
    CastSpellOnTarget(spellID, target)
    that is the cast command only if you need a real script you need to add some stuff
    /facepalm

    Originally Posted by donstrijb999 View Post
    i would like a fire spec boss script
    Could you be more specific?

  15. #15
    donstrijb999's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    maybe you can fix this script here is it on pastebin http://pastebin.com/f5a9ea8b
    Last edited by donstrijb999; 02-05-2010 at 12:33 AM.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Service] LUA Boss Scripting.
    By Ground Zero in forum World of Warcraft Emulator Servers
    Replies: 17
    Last Post: 02-04-2009, 06:11 PM
  2. [Service]LUA Workshop
    By EcHoEs in forum World of Warcraft Emulator Servers
    Replies: 8
    Last Post: 10-20-2008, 07:01 PM
  3. [Service] Doing LUA requests
    By Babbaa in forum World of Warcraft Emulator Servers
    Replies: 153
    Last Post: 10-06-2008, 12:43 PM
  4. [Service] Bapes LUA Scripting Shop
    By Bapes in forum World of Warcraft Emulator Servers
    Replies: 7
    Last Post: 04-22-2008, 09:06 PM
  5. Iceknight001's LUA Scripting Service!
    By Iceknight001 in forum World of Warcraft Emulator Servers
    Replies: 66
    Last Post: 04-12-2008, 08:26 PM
All times are GMT -5. The time now is 11:00 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search