Create an epic vendor

02/17/2006 10:25 seth0815#1
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
02/17/2006 11:46 C0rnh0lio#2
Danke dir für den code oder was das ist ^^

Ich werden ihn gleich adden
02/17/2006 11:57 seth0815#3
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 :D
02/17/2006 16:19 Strike-#4
Seth du kannst das aber gut mit strg c/v :D

(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 :D
02/17/2006 16:39 seth0815#5
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 :D
so credits sind drin
02/17/2006 16:41 Strike-#6
Naja, meine meinung is man sollte immer credits geben wenn mans net selbst gemacht hat, egal von wo es kommt.
02/18/2006 01:12 C0rnh0lio#7
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. ^^
02/19/2006 03:10 gangsta#8
lol alter das hast du alles von [Only registered and activated users can see links. Click Here To Register...]

rofl nichst selber gemacht o0
02/19/2006 05:24 Intoly#9
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
02/19/2006 12:59 seth0815#10
Quote:
Originally posted by gangsta@Feb 19 2006, 03:10
lol alter das hast du alles von [Only registered and activated users can see links. Click Here To Register...]

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
02/19/2006 13:05 Kaisaschnitt#11
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
02/19/2006 13:17 seth0815#12
Augen auf, steht kurz vor dem das du gequoted hast....
LG seth
02/19/2006 13:54 gangsta#13
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^^'