doesn't work bro.. same problem ''No item located on that spot''
log file report error?
Edited
Last edited by antiviru5; 25-10-10 at 07:51 AM.
Rename items,skills,mobs,npc:
problems in names with 's
example
Legendary Fuma's Tooth -> rename Legendary Fumas Tooth
and others name..
Twilight, Do you have a online.php script?
An script that shows online users? :O
If so, could you share? :P
Oki thx twilight.. Um is there anyway you can create Login Php scritp? exemple like you need to log in to download client etc..i tried but no luck :(
That one isn't working tho..
It just ... in the table char to create a column named LoginStatus (with default value - 0)
In this field, the stored procedure writes one - online or 0 - offline.
The script reads the current values
http://www.***********.de/forum/shai...rs-online.html
Last edited by Twilight; 24-10-10 at 11:33 PM.
Download the file SQLQueryNcash_Linked.rar and follow the four steps above. Should work.
Check also the question of the PRC.
I heated the head for two days.![]()
Last edited by cmaxlobo; 25-10-10 at 01:02 PM.
Hi twilight is there any sql query to fix this? becoz there is alot of items will be great if i can get query for that .. :D just too lazy to look 2000+ items..
Code:Rename items,skills,mobs,npc: problems in names with 's example Legendary Fuma's Tooth -> rename Legendary Fumas Tooth and others name.
-- Lazy Search
Code:--Items USE PS_GameDefs; GO SELECT * FROM Items WHERE (ItemName = 'Long Sword');Code:USE PS_GameDefs; GO --Skills SELECT * FROM Skills WHERE (SkillName = 'NeedSkillName');OR SQL LIKECode:--Mobs USE PS_GameDefs; GO SELECT * FROM Mobs WHERE (MobName = 'NeedMobName');
SQL LIKE - SQL Tutorial
Code:USE PS_GameDefs; GO SELECT * FROM Items WHERE (ItemName LIKE 'Legendary Fuma%');
Last edited by Twilight; 25-10-10 at 06:24 PM.
i do know this code but still 1 by1 :D