Npc Help

05/27/2010 22:00 Knight^Hawk#1
im trying to make a npc with these names

Code:
[NpcType2700]
Name=ELMUERTEZONE
SimpleObjID=724
StandByMotion=0724000100
BlazeMotion=0724000190
BlazeMotion1=0724000190
BlazeMotion2=0724000190
RestMotion=0724000101
Effect=other09-1
ZoomPercent=150
Note=DonationNPC
i have this in my cq_npc

Code:
2700	0	0	ELMUERTEZONE	1	26902	0	0	-1	1000	270	500	780700	0	0	0	0	0	0	0	0	0	0	0	ÎÞ	0	0	0	0	0	0	2	2	2	2
what do i need to change to make it work?

also when i click on the npc it shows a santa picture. when its a demonchief lookface
05/27/2010 22:42 KikkenF#2
Code:
insert into cq_npc (id, ownerid, playerid, name, type, lookface, length, fat, idxserver, mapid, cellx, celly, task0, task1, task2, task3, task4, task5, task6, task7, data0, data1, data2, data3, datastr, linkid, life, maxlife,  base, sort, itemid, size_front, size_back, size_left, size_right)
values
([COLOR="Red"]NPC_ID[/COLOR], 0, 0, '[COLOR="Red"]NAME[/COLOR]', [COLOR="Red"]TYPE(123=balloon)[/COLOR], [COLOR="Red"]NPC_ID*10[/COLOR], 0, 0, -1, [COLOR="Red"]MAPID[/COLOR], [COLOR="Red"]CELLX[/COLOR], [COLOR="Red"]CELLY[/COLOR],[COLOR="Red"] IDTASK0[/COLOR], 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 'ÎÞ', 0, 0, 0, 0, 1, 0, 0, 0, 0, 0);




insert into cq_task (id, id_next, id_nextfail, itemname1, itemname2, money, profession, sex, min_pk, max_pk, team, metempsychosis, query, marriage, client_active)
values
([COLOR="Red"]IDTASK0[/COLOR], [COLOR="Red"]IDTASK_NEXT[/COLOR], [COLOR="Red"]IDTASK_FAIL[/COLOR], '', '', 0, 0, 999, -100000, 100000, 999, 0, 0, -1, 0);




insert into cq_action (id, id_next, id_nextfail, type, data, param)
values
(IDTASK0, 0, 0, 1046, 1, '');




[NpcType [COLOR="Red"]NPC_ID[/COLOR]]
Name=[COLOR="Red"]NAME[/COLOR]
SimpleObjID=[COLOR="Red"]745 (mall face)[/COLOR]
StandByMotion=0745000100
BlazeMotion=0745000190
BlazeMotion1=0700000190
BlazeMotion2=0700000190
RestMotion=0745000101
Effect=[COLOR="Red"]charm03-999  (effects: other77, other106-1, anniversary2, newyear2, s-m-pB, other31)[/COLOR]
ZoomPercent=100
Note=[COLOR="Red"]Seller (change to whatever you want)[/COLOR]
I think this is it, if someone notice anything wrong feel free to say.

But its mainly this, there are guides to make npc's, search for them. Example: [Only registered and activated users can see links. Click Here To Register...]
05/28/2010 05:33 Knight^Hawk#3
did not work for me, but i figured out a diff way and got it. question tho what action type adds to the vip lvl? im trying to make a donation npc with vip lvls and gears and such.
05/28/2010 05:35 Eurion#4
I recently was wondering the same, and what I was told was that, in game you can't add to the vip level.
05/28/2010 10:33 KikkenF#5
Not type, you need to use param to check user vip lvl.

Because there are servers with vip maps, wich work same way.
05/28/2010 14:32 Eurion#6
Checks the vip level yes, but even after testing every action type I could find, nothing will allow you to increase/decrease a players vip in game.
05/28/2010 17:30 KikkenF#7
Oh in-game. Not possible that i know of.
05/28/2010 17:41 Knight^Hawk#8
ok guys thanx.