Register for your free account! | Forgot your password?

You last visited: Today at 01:08

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Create an epic vendor

Discussion on Create an epic vendor within the WoW Private Server forum part of the World of Warcraft category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2005
Posts: 303
Received Thanks: 2
Nice idea, always hated the .add sessions on fresh created lvl 60 characters.

Credits go to Exero

Sure you can add even more epic items to the vendor, just add the itemid and Name where the others are. Curently are only the Epic sets in this example.

Creating an epic vendor:


just paste the following in your creatures file located in your scripts folder, (but make sure your not using the creature ID for another NPC).

Quote:
[creature 900014]
level=255
elite=3
npcflags=4
maxhealth=5000000
maxmana=5000000
faction=35
bounding_radius=0.00
combat_reach=1.275000
attack=200 200
damage=2000 3000
name=Xero Epic Vendor
Type=10
model=10582
speed=0.00
size=6.00
Guild=Super Vendor
sell=16818 //NetherwindBelt
sell=16912 //NetherwindBoots
sell=16913 //NetherwindGloves
sell=16914 //NetherwindCrown
sell=16915 //NetherwindPants
sell=16916 //NetherwindRobes
sell=16917 //NetherwindMantle
sell=16918 //NetherwindBindings
sell=16919 //BootsofTranscendence
sell=16919 //BootsofTranscendence
sell=16920 //HandguardsofTranscendence
sell=16921 //HaloofTranscendence
sell=16922 //LeggingsofTranscendence
sell=16923 //RobesofTranscendence
sell=16924 //PauldronsofTranscendence
sell=16925 //BeltofTranscendence
sell=16926 //BindingsofTranscendence
sell=16897 //StormrageChestguard
sell=16898 //StormrageBoots
sell=16899 //StormrageHandguards
sell=16900 //StormrageCover
sell=16901 //StormrageLegguards
sell=16902 //StormragePauldrons
sell=16903 //StormrageBelt
sell=16904 //StormrageBracers
sell=16905 //BloodfangChestpiece
sell=16906 //BloodfangBoots
sell=16907 //BloodfangGloves
sell=16908 //BloodfangHood
sell=16909 //BloodfangPants
sell=16910 //BloodfangBelt
sell=16911 //BloodfangBracers
sell=16927 //NemesisBoots
sell=16928 //NemesisGloves
sell=16929 //NemesisSkullcap
sell=16930 //NemesisLeggings
sell=16931 //NemesisRobes
sell=16932 //NemesisSpaulders
sell=16933 //NemesisBelt
sell=16934 //NemesisBracers
sell=16935 //Dragonstalker'sBracers
sell=16936 //Dragonstalker'sBelt
sell=16937 //Dragonstalker'sSpaulders
sell=16938 //Dragonstalker'sLegguards
sell=16939 //Dragonstalker'sHelm
sell=16940 //Dragonstalker'sGauntlets
sell=16941 //Dragonstalker'sGreaves
sell=16942 //Dragonstalker'sBreastplate
sell=16951 //JudgementBindings
sell=16952 //JudgementBelt
sell=16953 //JudgementSpaulders
sell=16954 //JudgementLegplates
sell=16955 //JudgementCrown
sell=16956 //JudgementGauntlets
sell=16957 //JudgementSabatons
sell=16958 //JudgementBreastplate
sell=16959 //BraceletsofWrath
sell=16960 //WaistbandofWrath
sell=16961 //PauldronsofWrath
sell=16962 //LegplatesofWrath
sell=16963 //HelmofWrath
sell=16964 //GauntletsofWrath
sell=16965 //SabatonsofWrath
sell=16966 //breastplateofwrath
sell=16943 //BracersofTenStorms
sell=16944 //BeltofTenStorms
sell=16945 //EpauletsofTenStorms
sell=16946 //LegplatesofTenStorms
sell=16947 //HelmetofTenStorms
sell=16948 //GauntletsofTenStorms
sell=16949 //GreavesofTenStorms
sell=16950 //BreastplateofTenStorms

You must add the npc to the world, to find him, that should be clear ^^

Cheers seth
seth0815 is offline  
Old 02/17/2006, 11:46   #2
 
C0rnh0lio's Avatar
 
elite*gold: 0
Join Date: Apr 2005
Posts: 4,726
Received Thanks: 188
Danke dir für den code oder was das ist ^^

Ich werden ihn gleich adden
C0rnh0lio is offline  
Old 02/17/2006, 11:57   #3
 
elite*gold: 0
Join Date: Jul 2005
Posts: 303
Received Thanks: 2
Gern geschehen, fand die Idee einfach toll, da quält man sich rum und schreibt sich alle itemids auf einen Zettel,den man dan mit .add durchforstet, das man es viel einfacher machen kann sieht man an diesem Beispiel
<---- ups hab Ich wirklich schon 100 posts? .... und noch kein bischen Karma *schnief* für was das auch immer gut sein mag ^^

LG seth

edit: @Phipse dank dir! jetzt hab ich mein erstes
seth0815 is offline  
Old 02/17/2006, 16:19   #4
 
elite*gold: 0
Join Date: Nov 2005
Posts: 550
Received Thanks: 1
Seth du kannst das aber gut mit strg c/v

(JAAA ich darf auch ma pöse sein xD)

*edit*
Man kann auch einen npc erstellen der nur mir GMs spricht.
Code:
namespace eval gmvendor {

proc GossipHello { npc player } {
    set gossipText1    { text 6 &#34;I want to browse your goods...&#34; }
    ClearQFlag &#036;player tmpq
    SendGossip &#036;player &#036;npc { npctext 12617 } &#036;gossipText1
}

proc GossipSelect { npc player option } {
  switch &#036;option {
    0 { if { &#91;GetPlevel &#036;player&#93; &#60; 3 } { Say &#036;npc 0 &#34;You are not allowed to

use this!&#34; } { VendorList &#036;player &#036;npc } }
  }
  SendGossipComplete &#036;player
}

proc QueryQuest { npc player questid } {
}

proc QuestStatus { npc player } {
  return 1
}

proc QuestHello { npc player } {
Emote &#036;npc 66
}

proc QuestSelect { npc player questid } {
}

proc QuestAccept { npc player questid } {
}

proc QuestChooseReward { npc player questid choose } {
}

}
Das in ne neue tcl packen und sich dann freuen
Strike- is offline  
Old 02/17/2006, 16:39   #5
 
elite*gold: 0
Join Date: Jul 2005
Posts: 303
Received Thanks: 2
hab nie behauptet ich wäre der, der es sich ausgedacht hat, es ist nur nicht von einem namhaften ort, deswegen keine credits^^, bin kein plagiat
so credits sind drin
seth0815 is offline  
Old 02/17/2006, 16:41   #6
 
elite*gold: 0
Join Date: Nov 2005
Posts: 550
Received Thanks: 1
Naja, meine meinung is man sollte immer credits geben wenn mans net selbst gemacht hat, egal von wo es kommt.
Strike- is offline  
Old 02/18/2006, 01:12   #7
 
C0rnh0lio's Avatar
 
elite*gold: 0
Join Date: Apr 2005
Posts: 4,726
Received Thanks: 188
Quote:
Originally posted by seth0815@Feb 17 2006, 11:57
Gern geschehen, fand die Idee einfach toll, da quält man sich rum und schreibt sich alle itemids auf einen Zettel,den man dan mit .add durchforstet, das man es viel einfacher machen kann sieht man an diesem Beispiel
geht auch alles mit macro z.b. ^^
C0rnh0lio is offline  
Old 02/19/2006, 03:10   #8
 
elite*gold: 0
Join Date: Aug 2005
Posts: 420
Received Thanks: 36
lol alter das hast du alles von

rofl nichst selber gemacht o0
gangsta is offline  
Old 02/19/2006, 05:24   #9
 
elite*gold: 0
Join Date: May 2005
Posts: 94
Received Thanks: 2
hat er doch auch nie behauptet oder?? O_o

ausserdem hat er ja die Credits wo ers her hat rein geschrieben

Quote:
Nice idea, always hated the .add sessions on fresh created lvl 60 characters. wink.gif

Credits go to Exero<--- Gucks du das hier ma an!!

Sure you can add even more epic items to the vendor, just add the itemid and Name where the others are. Curently are only the Epic sets in this example.
ja und da der poster von deinem Link auch nur kopiert hat hat er dieses unten in seinem post stehen

Quote:
Credit goes to:
WARR1OR: For the "Realmlist loop fix" guide
toxic-snipe: For the "How to install multiple WoW's" guide
blomski: For the "How to make your own portal" guide
AngelTyrael: For the "Trainer script spell fix" script
Exero: For the "How to make your own custom mount" guide
Exero: For the "Creating an epic vendor" model <------Hier is der Ursprüngliche ersteller des NPC's
TeknothugL For posting the "creature creation" guide


also

Lesen->Denken->Nochmals Lesen->Nochma genau Denken-> Dann evtl. Antworten
Intoly is offline  
Old 02/19/2006, 12:59   #10
 
elite*gold: 0
Join Date: Jul 2005
Posts: 303
Received Thanks: 2
Quote:
Originally posted by gangsta@Feb 19 2006, 03:10
lol alter das hast du alles von

rofl nichst selber gemacht o0
sorry gangsta
Ich bin wenigstens soviel wenn ich was nützliches sehe, poste ichs hier. Gut ich gebe nicht überall credits (tut fast keiner hier der copy&paste macht). ABer ich bin kein Plagiat un behaupte ich hätte es geschrieben!!!
Ich bin hier um anderen zu helfen, habe seit 1 Monat keinen Emu mehr angegriffen weil ich sehr viel GW zur zeit spiele und eine vernünftige Emu Version abwarten will. Trozdem komme ich regelmäßig her um Suchenden zu helfen, aber wenn hier Leute solche Meldungen ablassen wie du, werd ich mir das in Zukunft wohl überlegen müssen... :?

THX @ Intoly

seth
seth0815 is offline  
Old 02/19/2006, 13:05   #11
 
elite*gold: 0
Join Date: Dec 2005
Posts: 221
Received Thanks: 1
Quote:
Originally posted by seth0815@Feb 17 2006, 10:25
Quote:
[creature 900014]
level=255
elite=3
npcflags=4
maxhealth=5000000
maxmana=5000000
faction=35
bounding_radius=0.00
combat_reach=1.275000
attack=200 200
damage=2000 3000
name=Xero Epic Vendor
Type=10
model=10582
speed=0.00
size=6.00
Guild=Super Vendor
sell=16818 //NetherwindBelt
sell=16912 //NetherwindBoots
sell=16913 //NetherwindGloves
sell=16914 //NetherwindCrown
sell=16915 //NetherwindPants
sell=16916 //NetherwindRobes
sell=16917 //NetherwindMantle
sell=16918 //NetherwindBindings
sell=16919 //BootsofTranscendence
sell=16919 //BootsofTranscendence
sell=16920 //HandguardsofTranscendence
sell=16921 //HaloofTranscendence
sell=16922 //LeggingsofTranscendence
sell=16923 //RobesofTranscendence
sell=16924 //PauldronsofTranscendence
sell=16925 //BeltofTranscendence
sell=16926 //BindingsofTranscendence
sell=16897 //StormrageChestguard
sell=16898 //StormrageBoots
sell=16899 //StormrageHandguards
sell=16900 //StormrageCover
sell=16901 //StormrageLegguards
sell=16902 //StormragePauldrons
sell=16903 //StormrageBelt
sell=16904 //StormrageBracers
sell=16905 //BloodfangChestpiece
sell=16906 //BloodfangBoots
sell=16907 //BloodfangGloves
sell=16908 //BloodfangHood
sell=16909 //BloodfangPants
sell=16910 //BloodfangBelt
sell=16911 //BloodfangBracers
sell=16927 //NemesisBoots
sell=16928 //NemesisGloves
sell=16929 //NemesisSkullcap
sell=16930 //NemesisLeggings
sell=16931 //NemesisRobes
sell=16932 //NemesisSpaulders
sell=16933 //NemesisBelt
sell=16934 //NemesisBracers
sell=16935 //Dragonstalker'sBracers
sell=16936 //Dragonstalker'sBelt
sell=16937 //Dragonstalker'sSpaulders
sell=16938 //Dragonstalker'sLegguards
sell=16939 //Dragonstalker'sHelm
sell=16940 //Dragonstalker'sGauntlets
sell=16941 //Dragonstalker'sGreaves
sell=16942 //Dragonstalker'sBreastplate
sell=16951 //JudgementBindings
sell=16952 //JudgementBelt
sell=16953 //JudgementSpaulders
sell=16954 //JudgementLegplates
sell=16955 //JudgementCrown
sell=16956 //JudgementGauntlets
sell=16957 //JudgementSabatons
sell=16958 //JudgementBreastplate
sell=16959 //BraceletsofWrath
sell=16960 //WaistbandofWrath
sell=16961 //PauldronsofWrath
sell=16962 //LegplatesofWrath
sell=16963 //HelmofWrath
sell=16964 //GauntletsofWrath
sell=16965 //SabatonsofWrath
sell=16966 //breastplateofwrath
sell=16943 //BracersofTenStorms
sell=16944 //BeltofTenStorms
sell=16945 //EpauletsofTenStorms
sell=16946 //LegplatesofTenStorms
sell=16947 //HelmetofTenStorms
sell=16948 //GauntletsofTenStorms
sell=16949 //GreavesofTenStorms
sell=16950 //BreastplateofTenStorms
Wo muss ich das reinfügen bzw in welche Txt datei oder Cfg?
Ist doch ne Datei mit Editor odeR? ^^

ThX im VorrAuS
Kaisaschnitt is offline  
Old 02/19/2006, 13:17   #12
 
elite*gold: 0
Join Date: Jul 2005
Posts: 303
Received Thanks: 2
Augen auf, steht kurz vor dem das du gequoted hast....
LG seth
seth0815 is offline  
Old 02/19/2006, 13:54   #13
 
elite*gold: 0
Join Date: Aug 2005
Posts: 420
Received Thanks: 36
hmm ja das tut mir sehr Leid wenn du dich jetz so angegriffen fühlst, will ich mich gaaanz doll entschuldigen o0

Ich meine nur selber andere Kritisieren, aber selber keine Kritik vertragen^^

aber eben nims net zu hart ist nich böse gemeint^^'
gangsta is offline  
Reply


Similar Threads Similar Threads
[WTS] Level 70 Orc Hunter/Jäger: Full Epic, Epic-Flying-Mount
01/31/2013 - World of Warcraft Trading - 6 Replies
verkauft
How can i create an NPC vendor who have items +255 and cost is in cps???
04/21/2010 - CO2 Private Server - 15 Replies
Can help me someone?
Verkaufe Full Epic Equipten Hunter! Epic Flug mount etc!
06/25/2008 - World of Warcraft Trading - 0 Replies
Hoi Leute , verkaufe meinen Account ! Transbereit , 1t Besitzer etc^^ extra alles über ebay World of Warcraft Account 70 Jäger 70 Schurke Full Epic bei eBay.de: World of Warcraft (endet 28.06.08 13:39:44 MESZ) Er hat volles Episches PvP PvE Equip Top dd! ! Ansonsten einfach icq bei fragen! :321818387!!



All times are GMT +2. The time now is 01:08.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.