Thread: [Subplugin Submission] [ZP] Zombie VIP 1.9.1
View Single Post
aaarnas
Veteran Member
Join Date: Jun 2008
Location: Lithuania
Old 08-12-2014 , 20:57   Re: [ZP] Zombie VIP 1.9.1
Reply With Quote #1312

Quote:
Originally Posted by zmd94 View Post
I have encountered a problem:
Although I'm using 1.9.0, yet the 1.9.1 version only fixed the multi-jump problem. So, how about this?

May you help to fix it? ;)
Change:
PHP Code:
VipsItemIs(ClassType:typeitemid) {
    
    static 
strnum[6]
    
num_to_str(itemidstrnum[1], charsmax(strnum)-1)
    
strnum[0] = _:type
    
    
return TrieKeyExists(trie_vip_itemsstrnum)

to:
PHP Code:
VipsItemIs(ClassType:typeitemid) {
    
    if (!
trie_vip_items)
        return 
false;
        
    static 
strnum[6]
    
num_to_str(itemidstrnum[1], charsmax(strnum)-1)
    
strnum[0] = _:type
    
    
return TrieKeyExists(trie_vip_itemsstrnum)

For gravity problem - that's strange. When tested, appears that health not working also. Everything is setting correctly, bus magically resets somewhere. Before release these things was working good. Will check more, to find a problem.
__________________
My plugins:
[ZP] ZM_VIP (v2.0.0 is comming. v1.9.1 BETA is out!)


Last edited by aaarnas; 08-12-2014 at 21:04.
aaarnas is offline